コード例 #1
0
 public Car(string Manufacturer, TEngType EngineType, bool IsHaveAutopilot) : base(Manufacturer)
 {
     this.EngineType      = EngineType;
     this.IsHaveAutopilot = IsHaveAutopilot;
     Name = "Car";
 }
コード例 #2
0
 public Bus(string Manufacturer, TEngType EngineType, bool IsHaveInfoPanel) : base(Manufacturer)
 {
     this.EngineType      = EngineType;
     this.IsHaveInfoPanel = IsHaveInfoPanel;
     Name = "Bus";
 }