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

◆ Equals() [3/3]

bool ReLogic.Utilities.Vector2D.Equals ( Vector2D other)
inline

Definition at line 55 of file Vector2D.cs.

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

References System.other, ReLogic.Utilities.Vector2D.X, and ReLogic.Utilities.Vector2D.Y.