Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Next()
[1/3]
override int System.Random.XoshiroImpl.Next
(
)
inline
Definition at line
482
of file
Random.cs
.
483
{
484
ulong num;
485
do
486
{
487
num =
NextUInt64
() >> 33;
488
}
489
while
(num ==
int
.MaxValue);
490
return
(
int
)num;
491
}
System.Random.XoshiroImpl.NextUInt64
ulong NextUInt64()
Definition
Random.cs:461
References
System.Random.XoshiroImpl.NextUInt64()
.
System
Random
XoshiroImpl
Generated by
1.10.0