mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
15 lines
246 B
C++
15 lines
246 B
C++
#ifdef LUA_EQEMU
|
|
|
|
#include "masterentity.h"
|
|
#include "lua_npc.h"
|
|
|
|
#include "lua.hpp"
|
|
#include <luabind/luabind.hpp>
|
|
|
|
luabind::scope lua_register_npc() {
|
|
return luabind::class_<Lua_NPC, Lua_Mob>("NPC")
|
|
.def(luabind::constructor<>());
|
|
}
|
|
|
|
#endif
|