Pack opening

This commit is contained in:
gamer147
2026-05-24 02:03:13 -04:00
parent bdff142d16
commit 79209bd70b
41 changed files with 37320 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace SVSim.EmulatedEntrypoint.Services;
public class SystemRandom : IRandom
{
private readonly Random _rng;
public SystemRandom() { _rng = new Random(); }
public SystemRandom(int seed) { _rng = new Random(seed); }
public double NextDouble() => _rng.NextDouble();
public int Next(int maxExclusive) => _rng.Next(maxExclusive);
}