Beispiel #1
0
 /// <summary>
 /// Spawn the next customer, if there is none, the game is over
 /// </summary>
 private void NextCustomer()
 {
     if (!level.NextCustomer())
     {
         GameOver();
     }
 }