Files
2026-02-18 23:02:28 +05:00

8 lines
192 B
C#

namespace _Project.Develop.Runtime.Utils.RandomManagement
{
public interface IRandomService
{
int Range(int min, int max);
float Range(float min, float max);
}
}