Ejemplo n.º 1
0
 public MapCell(MapCellFlags flags)
 {
     Flags = flags;
 }
Ejemplo n.º 2
0
 public void SetCell(int row, int column, MapCellFlags flags)
 {
     _cells[row, column] = new MapCell(flags);
 }