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

◆ IsEmpty

readonly bool System.Drawing.PointF.IsEmpty
get

Definition at line 19 of file PointF.cs.

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