| 7 | |
| 8 | template <typename T> |
| 9 | void TeamExt::ExtData::Serialize(T& Stm) |
| 10 | { |
| 11 | Stm |
| 12 | .Process(this->WaitNoTargetAttempts) |
| 13 | .Process(this->NextSuccessWeightAward) |
| 14 | .Process(this->IdxSelectedObjectFromAIList) |
| 15 | .Process(this->CloseEnough) |
| 16 | .Process(this->Countdown_RegroupAtLeader) |
| 17 | .Process(this->MoveMissionEndMode) |
| 18 | .Process(this->WaitNoTargetCounter) |
| 19 | .Process(this->WaitNoTargetTimer) |
| 20 | .Process(this->ForceJump_Countdown) |
| 21 | .Process(this->ForceJump_InitialCountdown) |
| 22 | .Process(this->ForceJump_RepeatMode) |
| 23 | .Process(this->TeamLeader) |
| 24 | .Process(this->PreviousScriptList) |
| 25 | ; |
| 26 | } |
| 27 | |
| 28 | void TeamExt::ExtData::LoadFromStream(PhobosStreamReader& Stm) |
| 29 | { |
no test coverage detected