We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d6bbf0 commit 90d3f84Copy full SHA for 90d3f84
1 file changed
src/TSMapEditor/Models/TerrainType.cs
@@ -5,7 +5,7 @@
5
6
namespace TSMapEditor.Models
7
{
8
- public class TerrainType : GameObjectType
+ public class TerrainType : GameObjectType, IArtConfigContainer
9
10
public TerrainType(string iniName) : base(iniName)
11
@@ -14,6 +14,7 @@ public TerrainType(string iniName) : base(iniName)
14
public override RTTIType WhatAmI() => RTTIType.TerrainType;
15
16
public TerrainArtConfig ArtConfig { get; } = new TerrainArtConfig();
17
+ public IArtConfig GetArtConfig() => ArtConfig;
18
19
public TerrainOccupation TemperateOccupationBits { get; set; }
20
public TerrainOccupation SnowOccupationBits { get; set; }
0 commit comments