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

◆ Equals() [3/3]

bool Microsoft.Xna.Framework.Vector2.Equals ( Vector2 other)
inline

Definition at line 56 of file Vector2.cs.

57 {
58 if (X == other.X)
59 {
60 return Y == other.Y;
61 }
62 return false;
63 }

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

Referenced by Microsoft.Xna.Framework.Vector2.Equals().