mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
15 lines
274 B
C#
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;
|
|
}
|
|
}
|
|
}
|