| 271 | } |
| 272 | |
| 273 | TreasuryObject* TreasuryObject::getTreasuryObjectFromPacket(GameMap* gameMap, ODPacket& is) |
| 274 | { |
| 275 | TreasuryObject* obj = new TreasuryObject(gameMap); |
| 276 | obj->importFromPacket(is); |
| 277 | return obj; |
| 278 | } |
| 279 | |
| 280 | void TreasuryObject::exportToPacket(ODPacket& os, const Seat* seat) const |
| 281 | { |
nothing calls this directly
no test coverage detected