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

◆ IsEmpty

readonly bool System.Drawing.RectangleF.IsEmpty
get

Definition at line 111 of file RectangleF.cs.

112 {
113 get
114 {
115 if (!(Width <= 0f))
116 {
117 return Height <= 0f;
118 }
119 return true;
120 }
121 }