obfuz/Editor/Utils/IRandom.cs

12 lines
164 B
C#
Raw 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-20 14:23:40 +08:00
}
}