mirror of
https://github.com/UberGames/RPG-X2.git
synced 2024-11-15 01:11:46 +00:00
17 lines
220 B
C
17 lines
220 B
C
|
// lua library for weapons
|
||
|
|
||
|
#include "g_lua.h"
|
||
|
|
||
|
#ifdef G_LUA
|
||
|
|
||
|
static const luaL_Reg lib_weapons[] = {
|
||
|
{NULL, NULL}
|
||
|
};
|
||
|
|
||
|
int Luaopen_Weapons(lua_State *L) {
|
||
|
luaL_register(L, "weapons", lib_weapons);
|
||
|
|
||
|
return 1;
|
||
|
}
|
||
|
#endif
|