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