private void PlaceSnakeOnGrid() { foreach (Coordinate snakePos in snake.Positions) { grid.SetGridCellType(snakePos, CellType.Snake); } }