| 34 | std::vector<ScriptClass*> PreviousScriptList; |
| 35 | |
| 36 | ExtData(TeamClass* OwnerObject) : Extension<TeamClass>(OwnerObject) |
| 37 | , WaitNoTargetAttempts { 0 } |
| 38 | , NextSuccessWeightAward { 0 } |
| 39 | , IdxSelectedObjectFromAIList { -1 } |
| 40 | , CloseEnough { -1 } |
| 41 | , Countdown_RegroupAtLeader { -1 } |
| 42 | , MoveMissionEndMode { 0 } |
| 43 | , WaitNoTargetCounter { 0 } |
| 44 | , WaitNoTargetTimer { } |
| 45 | , ForceJump_Countdown { } |
| 46 | , ForceJump_InitialCountdown { -1 } |
| 47 | , ForceJump_RepeatMode { false } |
| 48 | , TeamLeader { nullptr } |
| 49 | , PreviousScriptList { } |
| 50 | { } |
| 51 | |
| 52 | virtual ~ExtData() = default; |
| 53 |
nothing calls this directly
no outgoing calls
no test coverage detected