0
0
Fork 0
mirror of https://github.com/UberGames/RPG-X2.git synced 2025-03-12 02:51:53 +00:00
rpg-x2/game/lua_weapons.c
2011-07-26 13:08:07 +02:00

16 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