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

◆ CompareTo() [4/4]

int System.UInt32.CompareTo ( uint value)
inline

Definition at line 59 of file UInt32.cs.

60 {
61 if (this < value)
62 {
63 return -1;
64 }
65 if (this > value)
66 {
67 return 1;
68 }
69 return 0;
70 }

References System.value.