forked from github/server
binding the spell object
This commit is contained in:
parent
d46a10c5d7
commit
f20c0dde27
|
@ -10,5 +10,6 @@ extern void bind_building(struct lua_State * L);
|
||||||
extern void bind_faction(struct lua_State * L);
|
extern void bind_faction(struct lua_State * L);
|
||||||
extern void bind_alliance(struct lua_State * L);
|
extern void bind_alliance(struct lua_State * L);
|
||||||
extern void bind_eressea(struct lua_State * L);
|
extern void bind_eressea(struct lua_State * L);
|
||||||
|
extern void bind_spell(lua_State * L) ;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -283,6 +283,7 @@ lua_init(void)
|
||||||
luaopen_io(luaState);
|
luaopen_io(luaState);
|
||||||
luabind::open(luaState);
|
luabind::open(luaState);
|
||||||
bind_eressea(luaState);
|
bind_eressea(luaState);
|
||||||
|
bind_spell(luaState);
|
||||||
#ifdef ALLIANCES
|
#ifdef ALLIANCES
|
||||||
bind_alliance(luaState);
|
bind_alliance(luaState);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue