예제 #1
0
파일: DungeonMap.cs 프로젝트: nwrush/DnD
 public void Update(int x, int y, DnDTile obj)
 {
     this.Grid[x, y] = obj;
 }
예제 #2
0
파일: DungeonMap.cs 프로젝트: nwrush/DnD
 public void Update(DnDTile[,] grid)
 {
     this.Grid = grid;
 }