aboutsummaryrefslogtreecommitdiff
path: root/src/lua/modules/joypad/luaopen_joypad.cpp
blob: d305878e50ce361d43532ebca209a3904dfed24c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "libjin/jin.h"
#include "lua/modules/luax.h"

namespace jin
{
namespace lua
{

    static const luaL_Reg f[] = {
        { 0, 0 }
    };

    int luaopen_joypad(lua_State* L)
    {
        luax_newlib(L, f);

        return 1;
    }

}
}