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