| 363 | |
| 364 | template <typename T> |
| 365 | void AnimExt::ExtData::Serialize(T& Stm) |
| 366 | { |
| 367 | Stm |
| 368 | .Process(this->DeathUnitFacing) |
| 369 | .Process(this->FromDeathUnit) |
| 370 | .Process(this->DeathUnitTurretFacing) |
| 371 | .Process(this->DeathUnitHasTurret) |
| 372 | .Process(this->Invoker) |
| 373 | .Process(this->InvokerHouse) |
| 374 | .Process(this->AttachedSystem) |
| 375 | .Process(this->ParentBuilding) |
| 376 | .Process(this->IsTechnoTrailerAnim) |
| 377 | .Process(this->IsAttachedEffectAnim) |
| 378 | .Process(this->IsShieldIdleAnim) |
| 379 | ; |
| 380 | } |
| 381 | |
| 382 | void AnimExt::ExtData::LoadFromStream(PhobosStreamReader& Stm) |
| 383 | { |
no test coverage detected