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

◆ IsEmpty

readonly bool System.Drawing.SizeF.IsEmpty
get

Definition at line 20 of file SizeF.cs.

21 {
22 get
23 {
24 if (width == 0f)
25 {
26 return height == 0f;
27 }
28 return false;
29 }
30 }