Microsoft.Xna.Framework.Rectangle.Rectangle C# (CSharp) Method

Rectangle() public method

public Rectangle ( int x, int y, int width, int height )
x int
y int
width int
height int
		public Rectangle (int x, int y, int width, int height)
		{
			this.X = x;
			this.Y = y;
			this.Width = width;
			this.Height = height;
		}