CShock/CShocker/Shockers/ShockerSettings/SerialShockerSettings.cs
2024-01-17 04:11:30 +01:00

9 lines
290 B
C#

using CShocker.Ranges;
using CShocker.Shockers.ShockerSettings.Abstract;
namespace CShocker.Shockers.ShockerSettings;
public record SerialShockerSettings(string[] ShockerIds, IntensityRange Intensity, DurationRange Duration) : AShockerSettings(ShockerIds, Intensity, Duration)
{
}