| 270 | } |
| 271 | |
| 272 | MapLight* MapLight::getMapLightFromStream(GameMap* gameMap, std::istream& is) |
| 273 | { |
| 274 | MapLight* mapLight = new MapLight(gameMap, true); |
| 275 | mapLight->importFromStream(is); |
| 276 | return mapLight; |
| 277 | } |
| 278 | |
| 279 | MapLight* MapLight::getMapLightFromPacket(GameMap* gameMap, ODPacket& is) |
| 280 | { |
nothing calls this directly
no test coverage detected