CShock/CShocker/Shockers/OpenShockSerial.cs

18 lines
597 B
C#
Raw Normal View History

2024-01-17 17:59:10 +01:00
using CShocker.Ranges;
using CShocker.Shockers.Abstract;
2024-01-17 04:11:30 +01:00
using Microsoft.Extensions.Logging;
namespace CShocker.Shockers;
2024-01-17 04:36:38 +01:00
public class OpenShockSerial : SerialShocker
2024-01-17 04:11:30 +01:00
{
2024-01-17 17:59:10 +01:00
public OpenShockSerial(List<string> shockerIds, IntensityRange intensityRange, DurationRange durationRange, ILogger? logger = null) : base(shockerIds, intensityRange, durationRange, logger)
2024-01-17 04:11:30 +01:00
{
throw new NotImplementedException();
}
protected override void ControlInternal(ControlAction action, string shockerId, int intensity, int duration)
{
throw new NotImplementedException();
}
}