CSPspEmu.Gui.GuiRectangle.GuiRectangle C# (CSharp) Method

GuiRectangle() public method

public GuiRectangle ( int x, int y, int width, int height ) : System
x int
y int
width int
height int
return System
        public GuiRectangle(int x, int y, int width, int height)
        {
            this.X = x;
            this.Y = y;
            this.Width = width;
            this.Height = height;
        }
GuiRectangle