12 lines
207 B
C#
12 lines
207 B
C#
namespace CShocker.Ranges;
|
|
|
|
public readonly struct IntegerRange
|
|
{
|
|
public readonly int Min, Max;
|
|
|
|
public IntegerRange(int min, int max)
|
|
{
|
|
this.Min = min;
|
|
this.Max = max;
|
|
}
|
|
} |