示例#1
0
 public AutoPilotSystem(AutoBase p, string t) : base(p, t)
 {
     AutoProperty = p;
     Name         = p.Name + ". Autopilot.";
     Description  = p.Description + ". " + Title + ". Artificial intelligence drives the machine";
 }
示例#2
0
 public TrackingSystem(AutoBase p, string t) : base(p, t)
 {
     AutoProperty = p;
     Name         = p.Name + ". Tracking with cameras.";
     Description  = p.Description + ". " + Title + ". 4 high-tech cameras with bluetooth option";
 }
示例#3
0
 public DecoratorOptions(AutoBase au, string tit)
 {
     AutoProperty = au;
     Title        = tit;
 }