| 33 | TrajectoryPointer Trajectory; |
| 34 | |
| 35 | ExtData(BulletClass* OwnerObject) : Extension<BulletClass>(OwnerObject) |
| 36 | , TypeExtData { nullptr } |
| 37 | , FirerHouse { nullptr } |
| 38 | , CurrentStrength { 0 } |
| 39 | , InterceptorTechnoType { nullptr } |
| 40 | , InterceptedStatus { InterceptedStatus::None } |
| 41 | , DetonateOnInterception { true } |
| 42 | , LaserTrails {} |
| 43 | , Trajectory { nullptr } |
| 44 | , SnappedToTarget { false } |
| 45 | , DamageNumberOffset { INT32_MIN } |
| 46 | { } |
| 47 | |
| 48 | virtual ~ExtData() = default; |
| 49 |
nothing calls this directly
no outgoing calls
no test coverage detected