Ejemplo n.º 1
0
 private void Awake()
 {
     //lazy static singleton pattern
     //im not actually sure we need this lol.
     if (Instance != null)
     {
         Destroy(this.gameObject);
     }
     else
     {
         Instance   = this;
         GameLevels = _gameLevels as ILevelCollection;
     }
 }
Ejemplo n.º 2
0
 public void NextLevel()
 {
     LevelsManager.GoToNextLevel();
 }
Ejemplo n.º 3
0
 public void Restart()
 {
     LevelsManager.RestartCurrentLevel();
 }