obfuz/Editor/Utils/NumberRange.cs

15 lines
274 B
C#
Raw Normal View History

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;
}
}
}