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; }
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; }
public Shape(OutputAPI oa) { this.outputApi = oa; }