| 393 | |
| 394 | template <typename T> |
| 395 | void BulletExt::ExtData::Serialize(T& Stm) |
| 396 | { |
| 397 | Stm |
| 398 | .Process(this->TypeExtData) |
| 399 | .Process(this->FirerHouse) |
| 400 | .Process(this->CurrentStrength) |
| 401 | .Process(this->InterceptorTechnoType) |
| 402 | .Process(this->InterceptedStatus) |
| 403 | .Process(this->DetonateOnInterception) |
| 404 | .Process(this->LaserTrails) |
| 405 | .Process(this->SnappedToTarget) |
| 406 | .Process(this->DamageNumberOffset) |
| 407 | |
| 408 | .Process(this->Trajectory) // Keep this shit at last |
| 409 | ; |
| 410 | } |
| 411 | |
| 412 | void BulletExt::ExtData::LoadFromStream(PhobosStreamReader& Stm) |
| 413 | { |
no test coverage detected