Files
project-entity/Assets/_Project/Develop/Runtime/Utilities/RandomManagement/RandomService.cs
2026-02-18 23:02:28 +05:00

17 lines
363 B
C#

using UnityEngine;
namespace _Project.Develop.Runtime.Utils.RandomManagement
{
public class RandomService : IRandomService
{
public int Range(int min, int max)
{
return Random.Range(min, max);
}
public float Range(float min, float max)
{
return Random.Range(min, max);
}
}
}