Fix Converters

This commit is contained in:
2024-02-04 17:47:36 +01:00
parent f593efda62
commit 8a640491cb
5 changed files with 26 additions and 44 deletions

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