Пример #1
0
 // Méthode qui est appelé au start du script Jeu afin d'initialiser les objets
 public void Init()
 {
     tileReference = GameObject.Find("TilePrefab");
     grille        = GameObject.Find("Jeu").GetComponent <Jeu>().getGrille();
     colonne       = grille.getCols();
     ligne         = grille.getRows();
     generateNumberSelection();
 }