mirror of
https://github.com/UberGames/RPG-X2.git
synced 2025-02-08 15:51:49 +00:00
16 lines
220 B
C
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
|