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 57 of file Point16.cs.

58 {
59 if (first.X == second.X)
60 {
61 return first.Y != second.Y;
62 }
63 return true;
64 }