Bounds2D.Bounds2D C# (CSharp) Method

Bounds2D() public method

public Bounds2D ( int x, int y, int width, int height ) : System.Collections
x int
y int
width int
height int
return System.Collections
    public Bounds2D(int x, int y, int width, int height)
    {
        this.x = x;
        this.y = y;
        this.width = width;
        this.height = height;
    }

Same methods

Bounds2D::Bounds2D ( ) : System.Collections