| 35 | DynamicVectorClass<ColorScheme*>* Palette; // Intentionally not serialized - rebuilt from the palette file on load. |
| 36 | |
| 37 | ExtData(TerrainTypeClass* OwnerObject) : Extension<TerrainTypeClass>(OwnerObject) |
| 38 | , SpawnsTiberium_Type { 0 } |
| 39 | , SpawnsTiberium_Range { 1 } |
| 40 | , SpawnsTiberium_GrowthStage { { 3 } } |
| 41 | , SpawnsTiberium_CellsPerAnim { { 1 } } |
| 42 | , DestroyAnim {} |
| 43 | , DestroySound {} |
| 44 | , MinimapColor {} |
| 45 | , IsPassable { false } |
| 46 | , CanBeBuiltOn { false } |
| 47 | , HasDamagedFrames { false } |
| 48 | , HasCrumblingFrames { false } |
| 49 | , CrumblingSound {} |
| 50 | , AnimationLength {} |
| 51 | , PaletteFile {} |
| 52 | , Palette {} |
| 53 | { } |
| 54 | |
| 55 | virtual ~ExtData() = default; |
| 56 |
nothing calls this directly
no outgoing calls
no test coverage detected