Exemplo n.º 1
0
 /// <summary>
 /// TIME MACHINE STUFF
 /// </summary>
 public void buyFlux()
 {
     if (em.money >= Util.timeMachineCost)
     {
         em.spend(Util.timeMachineCost);
         wm.sm.buyFlux();
         playKaching();
     }
     else
     {
         notEnough();
     }
 }