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

◆ operator==()

static bool System.Drawing.Point.operator== ( Point left,
Point right )
inlinestatic

Definition at line 93 of file Point.cs.

94 {
95 if (left.X == right.X)
96 {
97 return left.Y == right.Y;
98 }
99 return false;
100 }

References System.Drawing.Point.X, and System.Drawing.Point.Y.