namespace CShocker.Ranges; public struct Range { public short Min, Max; public Range(short min, short max) { Min = min; Max = max; } }