Exemple #1
0
        public Dispatcher(string _name, Airplan air)
        {
            this.firstName = _name;
            this.air       = air;
            Random rand = new Random();

            corectiovka = rand.Next(-200, 200);
        }
Exemple #2
0
 public Pilot()
 {
     dispetchera = new List <Dispatcher>();
     air         = new Airplan();
     Score       = 0;
 }