コード例 #1
0
ファイル: MapCell.cs プロジェクト: RyanTankersley/XNATools
 public MapCell(Tile tile, int rowIndex, int columnIndex)
 {
     this.tiles = new Tiles();
     this.RowIndex = rowIndex;
     this.ColumnIndex = columnIndex;
     this.tiles.Add(tile);
 }
コード例 #2
0
ファイル: MapCell.cs プロジェクト: jameyt/XNATools
 public MapCell(Tile tile)
 {
     this.tiles = new Tiles();
     this.tiles.Add(tile);
 }