ScriptGUI.IntPoint.IntPoint C# (CSharp) 메소드

IntPoint() 공개 메소드

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