コード例 #1
0
ファイル: GameOfLife.cs プロジェクト: SeanSpires/Game-Of-Life
 public GameOfLife(int gridHeight, int gridWidth, Cell[,] cells)
 {
     World = new World();
     World.CreateGrid(gridHeight, gridWidth, cells);
 }