Example #1
0
 public MediumGadget(FinishColor color) : base(color)
 {
     this._color = color;
     serial      = WAGSerialGen.Instance.NextSerial(WaGs.mediumgadget);
 }
 public SmallWidget(FinishColor color) : base(color)
 {
     this._color = color;
     serial      = WAGSerialGen.Instance.NextSerial(WaGs.smallwidget);
 }
Example #3
0
 public LargeGadget(FinishColor color) : base(color)
 {
     this._color = color;
     serial      = WAGSerialGen.Instance.NextSerial(WaGs.largegadget);
 }
Example #4
0
 public AbstractGadget(FinishColor color) : base(color)
 {
 }
Example #5
0
 public override void Paint(FinishColor color)
 {
     this._color = Color;
 }
Example #6
0
 public virtual void Paint(FinishColor color)
 {
     this._finishColor = color;
 }
Example #7
0
 public AbstractWag(FinishColor color)
 {
     this._finishColor = color;
 }