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

◆ Random() [2/3]

System.Random.Random ( int Seed)
inline

Definition at line 641 of file Random.cs.

642 {
643 _impl = ((GetType() == typeof(Random)) ? ((ImplBase)new Net5CompatSeedImpl(Seed)) : ((ImplBase)new Net5CompatDerivedImpl(this, Seed)));
644 }
readonly ImplBase _impl
Definition Random.cs:631

References System.Random._impl.