Example #1
0
 public abstract void draw(myGraphic graphic);
Example #2
0
 public override void draw(myGraphic graphic)
 {
     graphic.drawStar(centerPointX, centerPointY, outerRadius, innerRadius);
 }
Example #3
0
 public override void draw(myGraphic graphic)
 {
     graphic.drawHouse(centerPointX, centerPointY, width, height);
 }