예제 #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
파일: MapCell.cs 프로젝트: jameyt/XNATools
 public MapCell(Tile tile)
 {
     this.tiles = new Tiles();
     this.tiles.Add(tile);
 }