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

◆ Equals() [1/3]

override bool Microsoft.Xna.Framework.Point.Equals ( object obj)
inline

Definition at line 38 of file Point.cs.

39 {
40 bool result = false;
41 if (obj is Point)
42 {
43 result = Equals((Point)obj);
44 }
45 return result;
46 }
bool Equals(Point other)
Definition Point.cs:29

References Microsoft.Xna.Framework.Point.Equals(), and System.obj.