CEngineSharp_Server.Utilities.Rect.Rect C# (CSharp) Method

Rect() public method

public Rect ( int left, int top, int height, int width )
left int
top int
height int
width int
        public Rect(int left, int top, int height, int width)
        {
            _left = left;
            _top = top;
            _height = height;
            _width = width;
        }
Rect