public MapCell(MapCellFlags flags) { Flags = flags; }
public void SetCell(int row, int column, MapCellFlags flags) { _cells[row, column] = new MapCell(flags); }