Ejemplo n.º 1
0
 public void ActivateGenerator()
 {
     if (this.Activated)
     {
         SlowPrint.Print("This generator is already running...");
     }
     else if (!this.Unlucky)
     {
         this.Activated = true;
         SlowPrint.Print("You hear a soft hum, and lights blink on. The generator is now running.");
     }
     else
     {
         Lose.LoseSequence();
     }
 }