ScriptGUI.IntSize.IntSize C# (CSharp) Method

IntSize() public method

public IntSize ( int _width, int _height ) : System
_width int
_height int
return System
        public IntSize(int _width, int _height)
        {
            width = _width;
            height = _height;
        }
IntSize