Fixed CreateRoom()'s return type

This commit is contained in:
Kayne Ruse
2014-06-23 04:54:01 +10:00
parent 46ed196bf4
commit 316db43b0a
5 changed files with 12 additions and 35 deletions
+2 -2
View File
@@ -36,8 +36,8 @@ public:
~RoomManager() = default;
//public access methods
int CreateRoom(MapType);
int UnloadRoom(int uid);
RoomData* CreateRoom(MapType);
void UnloadRoom(int uid);
RoomData* GetRoom(int uid);
RoomData* FindRoom(int uid);