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