aboutsummaryrefslogtreecommitdiff
path: root/src/lua/modules/keyboard/keyboard.cpp
blob: 9d27a4fefe20af6885e5804d74aaad9c97461621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "lua/modules/luax.h"
#include "lua/modules/embed/keyboard.lua.h"

namespace jin
{
namespace lua
{

    int luaopen_keyboard(lua_State* L)
    {
        luax_newlib(L, 0); 
        return 1;
    }

}
}