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 681 of file Vector2.cs.

682 {
683 if (value1.X == value2.X)
684 {
685 return value1.Y == value2.Y;
686 }
687 return false;
688 }

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