Terraria.World.Generation.Shapes.Rectangle.Rectangle C# (CSharp) Method

Rectangle() public method

public Rectangle ( int width, int height ) : Microsoft.Xna.Framework
width int
height int
return Microsoft.Xna.Framework
            public Rectangle(int width, int height)
            {
                this._width = width;
                this._height = height;
            }
Shapes.Rectangle