Exemplo n.º 1
0
 public TileMap CreateMap(string name, Tile defaultTile,int width, int height)
 {
     TileMap tm = new TileMap(defaultTile,width,height);
         mapList[name] = tm;
         return tm;
 }
Exemplo n.º 2
0
 public void LoadRowanMap(string name)
 {
     TileMap       = new TileMap(this, name + ".tmx");
     TileMap.Depth = 0.06f;
 }