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

◆ operator!=()

static bool Microsoft.Xna.Framework.Vector2.operator!= ( Vector2 value1,
Vector2 value2 )
inlinestatic

Definition at line 690 of file Vector2.cs.

691 {
692 if (value1.X == value2.X)
693 {
694 return value1.Y != value2.Y;
695 }
696 return true;
697 }

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