using System.Numerics; namespace Qrakhen.Randomize; public interface IRandomizer where T : INumber { static abstract T MaxValue { get; } T Next(); }