Beispiel #1
0
 public Plane(PlaneModels model, double carrying, double cargoWeight, double width, double lenth)
 {
     _pilotsCount = Constants.STANDART_PILOTS_COUNT;
     _wingsCount  = Constants.STANDART_WINGS_COUNT;
     _model       = model;
     _cargoWeight = cargoWeight;
     _carrying    = carrying;
     _width       = width;
     _lenth       = lenth;
 }
Beispiel #2
0
 public void SetModel(PlaneModels model)
 {
     _model = model;
 }