CShock/CShocker/Ranges/DurationRange.cs

9 lines
178 B
C#
Raw Normal View History

2024-01-17 04:11:30 +01:00
namespace CShocker.Ranges;
public class DurationRange : RandomIntegerRange
{
2024-01-17 22:16:40 +01:00
public DurationRange(short min, short max) : base(min ,max , 0, 30000)
2024-01-17 04:11:30 +01:00
{
}
}