mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-05 15:51:10 +00:00
8 lines
192 B
C#
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);
|
|
}
|
|
} |