/// <summary> /// Deleting all visitors and tell them they can leave /// </summary> public void LeaveCinema() { for (int i = 0; i < CurrentHumans.Count; i++) { (CurrentHumans[i] as Visitor).Communicate(InteractStatus.DONE_BEING_HELPED); } CurrentHumans.Clear(); }