Пример #1
0
 public void UpdateGrid()
 {
     grid = new Cell[x, y];
     grid[appleX, appleY] = Cell.Apple;
     snake.FillGrid(grid);
 }