From 0ec3e8b2270573c8348df0f1086dc8f557be0158 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Tue, 26 Jun 2012 19:33:02 +1200 Subject: [PATCH] add Category to tileset entries --- OpenRA.FileFormats/Map/TileSet.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenRA.FileFormats/Map/TileSet.cs b/OpenRA.FileFormats/Map/TileSet.cs index c6a030b5f0..c4fd1b1d4c 100644 --- a/OpenRA.FileFormats/Map/TileSet.cs +++ b/OpenRA.FileFormats/Map/TileSet.cs @@ -36,6 +36,7 @@ namespace OpenRA.FileFormats public string Image; public int2 Size; public bool PickAny; + public string Category; [FieldLoader.LoadUsing( "LoadTiles" )] public Dictionary Tiles = new Dictionary();