ScriptGUI.IntPoint.IntPoint C# (CSharp) Method

IntPoint() public method

public IntPoint ( int _left, int _top ) : System
_left int
_top int
return System
        public IntPoint(int _left, int _top)
        {
            left = _left;
            top = _top;
        }
IntPoint