CShock/CShocker/Ranges/DurationRange.cs
2024-01-29 17:05:13 +01:00

14 lines
298 B
C#

namespace CShocker.Ranges;
public class DurationRange : RandomIntegerRange
{
public DurationRange(short min, short max) : base(min ,max , 0, 30000)
{
}
public override bool Equals(object? obj)
{
return obj is IntensityRange && base.Equals(obj);
}
}