mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
14 lines
234 B
C++
14 lines
234 B
C++
#ifdef LUA_EQEMU
|
|
|
|
#include "lua.hpp"
|
|
#include <luabind/luabind.hpp>
|
|
|
|
#include "bot.h"
|
|
#include "lua_bot.h"
|
|
|
|
luabind::scope lua_register_bot() {
|
|
return luabind::class_<Lua_Bot, Lua_Mob>("Bot").def(luabind::constructor<>());
|
|
}
|
|
|
|
#endif
|