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

◆ operator!=()

static bool Microsoft.Xna.Framework.Point.operator!= ( Point a,
Point b )
inlinestatic

Definition at line 68 of file Point.cs.

69 {
70 if (a.X == b.X)
71 {
72 return a.Y != b.Y;
73 }
74 return true;
75 }

References Microsoft.Xna.Framework.Point.X, and Microsoft.Xna.Framework.Point.Y.