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

namespace jin
{
namespace lua
{
    //https://wiki.libsdl.org/SDL_Keycode

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

} // lua
} // jin