| 1162 | } |
| 1163 | |
| 1164 | void LoadRooms() |
| 1165 | { |
| 1166 | TENLog("Loading rooms... ", LogLevel::Info); |
| 1167 | |
| 1168 | Wibble = 0; |
| 1169 | |
| 1170 | LoadStaticRoomData(); |
| 1171 | BuildOutsideRoomsTable(); |
| 1172 | |
| 1173 | int floordataCount = ReadInt32(); |
| 1174 | g_Level.FloorData.resize(floordataCount); |
| 1175 | ReadBytes(g_Level.FloorData.data(), floordataCount * sizeof(short)); |
| 1176 | |
| 1177 | InitializeNeighborRoomList(); |
| 1178 | } |
| 1179 | |
| 1180 | void FreeLevel(bool partial) |
| 1181 | { |
no test coverage detected