mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-18 17:13:53 +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
|