#ifdef LUA_EQEMU #include "lua.hpp" #include #include #include "masterentity.h" #include "lua_door.h" luabind::scope lua_register_door() { return luabind::class_("Door") .def(luabind::constructor<>()) .property("null", &Lua_Door::Null) .property("valid", &Lua_Door::Valid); } #endif