mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-28 21:21:30 +00:00
13 lines
224 B
C++
13 lines
224 B
C++
#ifdef LUA_EQEMU
|
|
|
|
#include "lua_encounter.h"
|
|
|
|
#include "zone/encounter.h"
|
|
|
|
#include "luabind/luabind.hpp"
|
|
|
|
luabind::scope lua_register_encounter() {
|
|
return luabind::class_<Lua_Encounter>("Encounter");
|
|
}
|
|
|
|
#endif // LUA_EQEMU
|