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

◆ IsEmpty

readonly bool System.Drawing.Rectangle.IsEmpty
get

Definition at line 111 of file Rectangle.cs.

112 {
113 get
114 {
115 if (height == 0 && width == 0 && x == 0)
116 {
117 return y == 0;
118 }
119 return false;
120 }
121 }