Exemplo n.º 1
0
 public override void Draw()
 {
     DrawingApi.DrawLine(_x, _y, _x, _y + _height);
     DrawingApi.DrawLine(_x, _y + _height, _x + _width, _y + _height);
     DrawingApi.DrawLine(_x + _width, _y + _height, _x + _width, _y);
     DrawingApi.DrawLine(_x + _width, _y, _x, _y);
 }