idTech4.idRectangle.idRectangle C# (CSharp) Method

idRectangle() public method

public idRectangle ( float x, float y, float width, float height ) : System
x float
y float
width float
height float
return System
		public idRectangle(float x, float y, float width, float height)
		{
			this.X = x;
			this.Y = y;
			this.Width = width;
			this.Height = height;
		}