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

◆ Sign() [5/8]

static int System.Math.Sign ( long value)
inlinestatic

Definition at line 1235 of file Math.cs.

1236 {
1237 return (int)((value >> 63) | (-value >>> 63));
1238 }

References System.value.