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

◆ operator==()

static bool Terraria.DataStructures.Point16.operator== ( Point16 first,
Point16 second )
inlinestatic

Definition at line 48 of file Point16.cs.

49 {
50 if (first.X == second.X)
51 {
52 return first.Y == second.Y;
53 }
54 return false;
55 }