Beispiel #1
0
 public Manager()
 {
     this.elJuego     = new List <Questions>();
     this.yaResueltas = new List <Questions>();
     this.laPregunta  = new Questions();
     this.vidas       = 5;
     this.nivel       = 1;
     Questions.ArmarLaLista(this.ElJuego);
 }
Beispiel #2
0
 /// <summary>
 /// Inicializa el juego
 /// </summary>
 public void ArrancarElJuego()
 {
     Questions.ArmarLaLista(ElJuego);
 }