| 152 | |
| 153 | template <typename T> |
| 154 | void ScenarioExt::ExtData::Serialize(T& Stm) |
| 155 | { |
| 156 | Stm |
| 157 | .Process(this->Waypoints) |
| 158 | .Process(this->Variables[0]) |
| 159 | .Process(this->Variables[1]) |
| 160 | .Process(this->ShowBriefing) |
| 161 | .Process(this->BriefingTheme) |
| 162 | .Process(this->AutoDeathObjects) |
| 163 | .Process(this->TransportReloaders) |
| 164 | ; |
| 165 | } |
| 166 | |
| 167 | void ScenarioExt::ExtData::LoadFromStream(PhobosStreamReader& Stm) |
| 168 | { |
no test coverage detected