binding the spell object

This commit is contained in:
Enno Rehling 2004-03-08 23:00:18 +00:00
parent d46a10c5d7
commit f20c0dde27
2 changed files with 2 additions and 0 deletions

View File

@ -10,5 +10,6 @@ extern void bind_building(struct lua_State * L);
extern void bind_faction(struct lua_State * L);
extern void bind_alliance(struct lua_State * L);
extern void bind_eressea(struct lua_State * L);
extern void bind_spell(lua_State * L) ;
#endif

View File

@ -283,6 +283,7 @@ lua_init(void)
luaopen_io(luaState);
luabind::open(luaState);
bind_eressea(luaState);
bind_spell(luaState);
#ifdef ALLIANCES
bind_alliance(luaState);
#endif