12 lines
164 B
C#
12 lines
164 B
C#
|
namespace Obfuz.Utils
|
|||
|
{
|
|||
|
public interface IRandom
|
|||
|
{
|
|||
|
int NextInt(int min, int max);
|
|||
|
|
|||
|
int NextInt(int max);
|
|||
|
|
|||
|
int NextInt();
|
|||
|
}
|
|||
|
}
|