ScriptGUI.IntRect.IntRect C# (CSharp) Method

IntRect() public method

public IntRect ( int _left, int _top, int _right, int _bottom ) : System
_left int
_top int
_right int
_bottom int
return System
        public IntRect(int _left, int _top, int _right, int _bottom)
        {
            left = _left;
            top = _top;
            right = _right;
            bottom = _bottom;
        }
IntRect