Files
TEngine/UnityProject/Packages/com.code-philosophy.obfuz/Editor/Utils/NumberRange.cs
2025-07-26 08:10:41 +08:00

15 lines
274 B
C#

namespace Obfuz.Utils
{
public class NumberRange<T> where T : struct
{
public readonly T? min;
public readonly T? max;
public NumberRange(T? min, T? max)
{
this.min = min;
this.max = max;
}
}
}