ScriptGUI.IntSize.IntSize C# (CSharp) Méthode

IntSize() public méthode

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