Sharpex2D.UI.UISize.UISize C# (CSharp) Method

UISize() public method

Initializes a new UISize class.
public UISize ( int width, int height ) : Sharpex2D.Math
width int The Width.
height int The Height.
return Sharpex2D.Math
        public UISize(int width, int height)
        {
            _size = new Vector2(width, height);
        }

Same methods

UISize::UISize ( ) : Sharpex2D.Math
UISize