blob: a3623ae3a967c29ff9ff18dddaa341e935df5f1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "common/je_lua_object.h"
#include "common/je_lua_common.h"
#include "libjin/jin.h"
namespace JinEngine
{
namespace Lua
{
LUA_EXPORT int luaopen_joypad(lua_State* L)
{
luaL_Reg methods[] = {
{ 0, 0 }
};
luax_newlib(L, methods);
return 1;
}
/*SDL_JoystickGetButton*/
} // namespace Lua
} // namespace JinEngine
|