2025-04-20 14:23:40 +08:00
|
|
|
|
namespace Obfuz.Virtualization
|
|
|
|
|
{
|
|
|
|
|
public interface IRandom
|
|
|
|
|
{
|
2025-04-20 15:20:13 +08:00
|
|
|
|
int NextInt(int min, int max);
|
2025-04-20 14:23:40 +08:00
|
|
|
|
|
2025-04-20 15:20:13 +08:00
|
|
|
|
int NextInt(int max);
|
2025-04-20 14:23:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|