mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-24 17:21:29 +00:00
26 lines
340 B
C++
26 lines
340 B
C++
#ifndef EQEMU_LUA_BEHAVIOR_INTERFACE_H
|
|
#define EQEMU_LUA_BEHAVIOR_INTERFACE_H
|
|
#ifdef LUA_EQEMU
|
|
|
|
namespace luabind {
|
|
namespace adl {
|
|
class object;
|
|
}
|
|
}
|
|
|
|
struct lua_State;
|
|
|
|
class LuaBehaviorInterface
|
|
{
|
|
public:
|
|
LuaBehaviorInterface();
|
|
~LuaBehaviorInterface();
|
|
bool Init();
|
|
private:
|
|
bool MapFunctions();
|
|
lua_State *L;
|
|
};
|
|
|
|
#endif
|
|
#endif
|