12 lines
171 B
C#
12 lines
171 B
C#
|
namespace CShocker.Ranges;
|
|||
|
|
|||
|
public struct Range
|
|||
|
{
|
|||
|
public short Min, Max;
|
|||
|
|
|||
|
public Range(short min, short max)
|
|||
|
{
|
|||
|
Min = min;
|
|||
|
Max = max;
|
|||
|
}
|
|||
|
}
|