mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
16 lines
288 B
C++
16 lines
288 B
C++
#ifdef LUA_EQEMU
|
|
|
|
#include "lua.hpp"
|
|
#include <luabind/luabind.hpp>
|
|
#include <luabind/object.hpp>
|
|
|
|
#include "masterentity.h"
|
|
#include "lua_client.h"
|
|
|
|
luabind::scope lua_register_client() {
|
|
return luabind::class_<Lua_Client, Lua_Mob>("Client")
|
|
.def(luabind::constructor<>());
|
|
}
|
|
|
|
#endif
|