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

◆ FromLTRB()

static Rectangle System.Drawing.Rectangle.FromLTRB ( int left,
int top,
int right,
int bottom )
inlinestatic

Definition at line 139 of file Rectangle.cs.

140 {
141 return new Rectangle(left, top, right - left, bottom - top);
142 }
Rectangle(int x, int y, int width, int height)
Definition Rectangle.cs:123

References System.Drawing.Rectangle.Rectangle().