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