示例#1
0
 public void SpawnCell(Cell cell)
 {
     grid.Add(cell.Position, cell);
 }
示例#2
0
 public void SpawnCell(Tuple<int, int> location, Cell.CellState initialState = Cell.CellState.Dead)
 {
     SpawnCell(new Cell(location.Item1, location.Item2, initialState));
 }