Ejemplo n.º 1
0
 /**
  * Loads a tileset to be used by the map.
  **/
 public void LoadTileset(TilesetFormat type, string path)
 {
     switch (type)
     {
     case TilesetFormat.TMD:
         mpmTileset = new CModelTMD(path, false);
         break;
     }
 }
Ejemplo n.º 2
0
 public TilesetRunContentStrategy(TilesetFormat format) => TilesetFormat = format;