Example #1
0
 public void wrongAnswer(objectScript choice)
 {
     counter = choice.getCounter();
     //print("choice: " + choice);
     //print("obj counter: " + choice.getCounter());
     if (counter > 0)
     {
         currentScore = choice.decScore();
         counter      = choice.decCounter();
         print("currentScore: " + currentScore);
         print("counter: " + choice.getCounter());
     }
 }