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

◆ CompareTo() [1/3]

int Microsoft.Xna.Framework.CurveKey.CompareTo ( CurveKey other)
inline

Definition at line 143 of file CurveKey.cs.

144 {
145 if (position != other.position)
146 {
147 if (!(position < other.position))
148 {
149 return 1;
150 }
151 return -1;
152 }
153 return 0;
154 }

References System.other, and Microsoft.Xna.Framework.CurveKey.position.