idTech4.idRectangle.Offset C# (CSharp) Method

Offset() public method

public Offset ( float x, float y ) : void
x float
y float
return void
		public void Offset(float x, float y)
		{
			this.X += x;
			this.Y += y;
		}