Exemple #1
0
 public DecoratorGPS(Tank model)
     : base(model, "DecoratorGPS")
 {
 }
Exemple #2
0
 public Decorator(Tank model, string tname)
 {
     tn        = model;
     listdecor = model.listdecor;
     listdecor.Add(tname);
 }
Exemple #3
0
 public DecoratorBoth(Tank model)
     : base(model, "DecoratorBoth")
 {
 }
Exemple #4
0
 public DecoratorIA(Tank model)
     : base(model, "DecoratorIA")
 {
 }