public CircleBridge(int x, int y, int radius, IDrawApi drawApi)
     : base(drawApi)
 {
     _x      = x;
     _y      = y;
     _radius = radius;
 }
Exemplo n.º 2
0
 public Character(IDrawApi api)
 {
     this.api = api;
 }
Exemplo n.º 3
0
 protected Shape(IDrawApi drawApi)
 {
     this.Drawer = drawApi;
 }
Exemplo n.º 4
0
 public Circle(int x, int y, int radius, IDrawApi drawApi) : base(drawApi)
 {
     this.X      = x;
     this.Y      = y;
     this.Radius = radius;
 }
 public Circle(int x, int y, int radius, IDrawApi drawApi) : base(drawApi)
 {
     this._x      = x;
     this._y      = y;
     this._radius = radius;
 }
Exemplo n.º 6
0
 public Circle(IDrawApi drawApi)
 {
     this.drawApi = drawApi;
 }
Exemplo n.º 7
0
 public Circle(int rad, int x, int y, IDrawApi drawApi) : base(drawApi)
 {
     radius = rad;
     this.x = x;
     this.y = y;
 }
Exemplo n.º 8
0
 protected Shape(IDrawApi drawApi)
 {
     this._drawApi = drawApi;
 }
 protected Shape(IDrawApi drawApi) => DrawApi = drawApi;
Exemplo n.º 10
0
 public Shape(IDrawApi drawApi)
 {
     _drawAPIBridge = drawApi;
 }
Exemplo n.º 11
0
 protected ShapeBridge(IDrawApi drawApi)
 {
     DrawApiShapeBridge = drawApi;
 }
Exemplo n.º 12
0
 protected Shape(IDrawApi drawAPI)
 {
     this.drawAPI = drawAPI;
 }
Exemplo n.º 13
0
 public Circle(int x, int y, int radius, IDrawApi drawAPI) : base(drawAPI)
 {
     this.x      = x;
     this.y      = y;
     this.radius = radius;
 }
Exemplo n.º 14
0
 public Circle(IDrawApi drawApi)
     : base(drawApi)
 {
 }
Exemplo n.º 15
0
 protected Shape(IDrawApi drawApi)
 {
     DrawApi = drawApi;
 }