Exemple #1
0
 public Circle(int x, int y, int size, OutputAPI oa, Color rgb)
     : base(oa)
 {
     this.x = x;
     this.y = y;
     this.size = size;
     this.color = rgb;
 }
Exemple #2
0
 public Star(int x, int y, int width, int height, OutputAPI oa, Color rgb)
     : base(oa)
 {
     this.x = x;
     this.y = y;
     this.width = width;
     this.height = height;
     this.color = rgb;
 }
Exemple #3
0
 public Shape(OutputAPI oa)
 {
     this.outputApi = oa;
 }