Server responds to barrier queries

This commit is contained in:
2016-04-08 22:29:20 +10:00
parent 5d0f9e1bb8
commit e2e2e243d4
5 changed files with 35 additions and 4 deletions
+4
View File
@@ -130,6 +130,10 @@ int RoomData::GetRoomIndex() {
return roomIndex;
}
BarrierManager* RoomData::GetBarrierMgr() {
return &barrierMgr;
}
std::list<CharacterData*>* RoomData::GetCharacterList() {
return &characterList;
}
+1
View File
@@ -53,6 +53,7 @@ public:
int SetRoomIndex(int i);
int GetRoomIndex();
BarrierManager* GetBarrierMgr();
std::list<CharacterData*>* GetCharacterList();
CreatureManager* GetCreatureMgr();
RegionPagerLua* GetPager();