blob: a955978abf6ceec315c62ff3da37032019680727 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "common/l_object.h"
#include "common/l_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
|