mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
18 lines
268 B
C#
18 lines
268 B
C#
namespace Obfuz.Utils
|
|
{
|
|
public interface IRandom
|
|
{
|
|
int NextInt(int min, int max);
|
|
|
|
int NextInt(int max);
|
|
|
|
int NextInt();
|
|
|
|
long NextLong();
|
|
|
|
float NextFloat();
|
|
|
|
bool NextInPercentage(float percentage);
|
|
}
|
|
}
|