Exemplo n.º 1
0
 public BaseShape(string t, int x, int y, int w, int h, ShapeStrategy strat) : base(t, x, y, w, h)
 {
     this.strat = strat;
 }
Exemplo n.º 2
0
 public BaseShape(string t, ShapeStrategy strat) : base(t, 0, 0, 0, 0)
 {
     this.strat = strat;
 }