| 277 | } |
| 278 | |
| 279 | MapLight* MapLight::getMapLightFromPacket(GameMap* gameMap, ODPacket& is) |
| 280 | { |
| 281 | MapLight* mapLight = new MapLight(gameMap, false); |
| 282 | mapLight->importFromPacket(is); |
| 283 | return mapLight; |
| 284 | } |
| 285 | |
| 286 | void MapLight::exportToStream(std::ostream& os) const |
| 287 | { |
nothing calls this directly
no test coverage detected