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

IntSize() 공개 메소드

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