server/src/eressea/lua/bindings.h

16 lines
445 B
C
Raw Normal View History

2003-12-14 11:02:29 +01:00
#ifndef LUA_BINDINGS_H
#define LUA_BINDINGS_H
struct lua_State;
extern void bind_region(struct lua_State * L);
extern void bind_unit(struct lua_State * L);
extern void bind_ship(struct lua_State * L);
extern void bind_building(struct lua_State * L);
2003-12-14 11:02:29 +01:00
extern void bind_faction(struct lua_State * L);
extern void bind_alliance(struct lua_State * L);
extern void bind_eressea(struct lua_State * L);
2004-03-09 00:00:18 +01:00
extern void bind_spell(lua_State * L) ;
#endif