blob: 93a62bd771a1604b9819dafb416c9fd10134a25b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "common/je_lua_common.h"
#include "common/je_lua_object.h"
namespace JinEngine
{
namespace Lua
{
//https://wiki.libsdl.org/SDL_Keycode
LUA_EXPORT int luaopen_keyboard(lua_State* L)
{
luax_newlib(L, 0);
return 1;
}
} // namespace Lua
} // namespace JinEngine
|