| 609 | |
| 610 | template <typename T> |
| 611 | void HouseExt::ExtData::Serialize(T& Stm) |
| 612 | { |
| 613 | Stm |
| 614 | .Process(this->PowerPlantEnhancers) |
| 615 | .Process(this->OwnedLimboDeliveredBuildings) |
| 616 | .Process(this->OwnedCountedHarvesters) |
| 617 | .Process(this->LimboAircraft) |
| 618 | .Process(this->LimboBuildings) |
| 619 | .Process(this->LimboInfantry) |
| 620 | .Process(this->LimboVehicles) |
| 621 | .Process(this->Factory_BuildingType) |
| 622 | .Process(this->Factory_InfantryType) |
| 623 | .Process(this->Factory_VehicleType) |
| 624 | .Process(this->Factory_NavyType) |
| 625 | .Process(this->Factory_AircraftType) |
| 626 | .Process(this->AISuperWeaponDelayTimer) |
| 627 | .Process(this->RepairBaseNodes) |
| 628 | .Process(this->RestrictedFactoryPlants) |
| 629 | .Process(this->LastBuiltNavalVehicleType) |
| 630 | .Process(this->ProducingNavalUnitTypeIndex) |
| 631 | .Process(this->NumAirpads_NonMFB) |
| 632 | .Process(this->NumBarracks_NonMFB) |
| 633 | .Process(this->NumWarFactories_NonMFB) |
| 634 | .Process(this->NumConYards_NonMFB) |
| 635 | .Process(this->NumShipyards_NonMFB) |
| 636 | .Process(this->AIFireSaleDelayTimer) |
| 637 | .Process(this->SuspendedEMPulseSWs) |
| 638 | .Process(this->SuperExts) |
| 639 | ; |
| 640 | } |
| 641 | |
| 642 | void HouseExt::ExtData::LoadFromStream(PhobosStreamReader& Stm) |
| 643 | { |
no test coverage detected