Exemplo n.º 1
0
 // Start is called before the first frame update
 void Start()
 {
     Debug.Log("GameHandler.Start");
     grid = new snakeGrid();
     grid.getSnakeHead(head);
     head.getGrid(grid);
     head.getPlayAgain(playButton);
 }
Exemplo n.º 2
0
 public void getGrid(snakeGrid sGrid)
 {
     theGrid = sGrid;
 }