Esempio n. 1
0
 public MapCell(Tile tile, int rowIndex, int columnIndex)
 {
     this.tiles = new Tiles();
     this.RowIndex = rowIndex;
     this.ColumnIndex = columnIndex;
     this.tiles.Add(tile);
 }
Esempio n. 2
0
 public MapCell(Tile tile)
 {
     this.tiles = new Tiles();
     this.tiles.Add(tile);
 }