obfuz/Editor/Utils/IRandom.cs

14 lines
190 B
C#
Raw Permalink Normal View History

2025-04-22 08:13:58 +08:00
namespace Obfuz.Utils
2025-04-20 14:23:40 +08:00
{
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-22 08:13:58 +08:00
int NextInt();
2025-04-23 10:28:27 +08:00
long NextLong();
2025-04-20 14:23:40 +08:00
}
}