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

◆ IsEmpty

readonly bool System.Drawing.Size.IsEmpty
get

Definition at line 19 of file Size.cs.

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