示例#1
0
        static void Main(string[] args)
        {
            Mediator m = new Mediator();
            Runway   r = new Runway(m);
            Flight   f = new Flight(m);

            //r.land();
            f.land();
        }
示例#2
0
 public void setRunway(Runway r)
 {
     runway = r;
 }