Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Modified()

static Rectangle Terraria.Utils.Modified ( this Rectangle r,
int x,
int y,
int w,
int h )
inlinestatic

Definition at line 1067 of file Utils.cs.

1068 {
1069 return new Rectangle(r.X + x, r.Y + y, r.Width + w, r.Height + h);
1070 }