| 458 | |
| 459 | template <typename T> |
| 460 | void BuildingExt::ExtData::Serialize(T& Stm) |
| 461 | { |
| 462 | Stm |
| 463 | .Process(this->TypeExtData) |
| 464 | .Process(this->TechnoExtData) |
| 465 | .Process(this->DeployedTechno) |
| 466 | .Process(this->IsCreatedFromMapFile) |
| 467 | .Process(this->LimboID) |
| 468 | .Process(this->GrindingWeapon_LastFiredFrame) |
| 469 | .Process(this->GrindingWeapon_AccumulatedCredits) |
| 470 | .Process(this->CurrentAirFactory) |
| 471 | .Process(this->AccumulatedIncome) |
| 472 | .Process(this->CurrentLaserWeaponIndex) |
| 473 | .Process(this->PoweredUpToLevel) |
| 474 | .Process(this->EMPulseSW) |
| 475 | ; |
| 476 | } |
| 477 | |
| 478 | void BuildingExt::ExtData::LoadFromStream(PhobosStreamReader& Stm) |
| 479 | { |
no test coverage detected