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

◆ NextInt64() [1/3]

override long System.Random.XoshiroImpl.NextInt64 ( )
inline

Definition at line 526 of file Random.cs.

527 {
528 ulong num;
529 do
530 {
531 num = NextUInt64() >> 1;
532 }
533 while (num == long.MaxValue);
534 return (long)num;
535 }

References System.Random.XoshiroImpl.NextUInt64().