Example #1
0
 public void AddTextureType(MapGenerator.TILE_TYPE type)
 {
     tiles.Add(type, new Dictionary <TILE_ORIENTATION, Texture2D>( ));
 }
Example #2
0
 public void AddTexture(MapGenerator.TILE_TYPE type, MapGenerator.TILE_ORIENTATION or, Texture2D texture)
 {
     tiles[type].Add(or, texture);
 }