Esempio n. 1
0
        public void RemoveFromQueue()
        {
            Airplane airplaneToLand = LandingQueue.DequeueHighestPriority();

            if (airplaneToLand != null)
            {
                LanesTaken++;
                airplaneToLand.SetStatusToLanding();
            }
        }