Fix Converters
This commit is contained in:
12
CShocker/Ranges/IntegerRange.cs
Normal file
12
CShocker/Ranges/IntegerRange.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace CShocker.Ranges;
|
||||
|
||||
public readonly struct IntegerRange
|
||||
{
|
||||
public readonly int Min, Max;
|
||||
|
||||
public IntegerRange(int min, int max)
|
||||
{
|
||||
this.Min = min;
|
||||
this.Max = max;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user