| 37 | std::vector<TechnoExt::ExtData*> TransportReloaders; // Objects that can reload ammo in limbo |
| 38 | |
| 39 | ExtData(ScenarioClass* OwnerObject) : Extension<ScenarioClass>(OwnerObject) |
| 40 | , ShowBriefing { false } |
| 41 | , BriefingTheme { -1 } |
| 42 | , Waypoints { } |
| 43 | , Variables { } |
| 44 | , AutoDeathObjects {} |
| 45 | , TransportReloaders {} |
| 46 | { } |
| 47 | |
| 48 | void SetVariableToByID(bool bIsGlobal, int nIndex, char bState); |
| 49 | void GetVariableStateByID(bool bIsGlobal, int nIndex, char* pOut); |
nothing calls this directly
no outgoing calls
no test coverage detected