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

◆ IsEmpty

readonly bool System.Drawing.Point.IsEmpty
get

Definition at line 19 of file Point.cs.

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