Пример #1
0
        public Game(int width = 10, int height = 10)
        {
            Width  = width;
            Height = height;

            CurrentCells = new Cell[Width, Height];
            NextCells    = new Cell[Width, Height];

            CurrentCells.Initialize(Width, Height);
        }