CEngineSharp_Server.Utilities.Rect.Rect C# (CSharp) Метод

Rect() публичный Метод

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