CShock/CShocker/Shockers/APIS/OpenShockSerial.cs

18 lines
630 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;
2024-01-17 22:16:40 +01:00
namespace CShocker.Shockers.APIS;
2024-01-17 04:11:30 +01:00
2024-01-17 04:36:38 +01:00
public class OpenShockSerial : SerialShocker
2024-01-17 04:11:30 +01:00
{
2024-01-17 22:16:40 +01:00
public OpenShockSerial(List<string> shockerIds, IntensityRange intensityRange, DurationRange durationRange, ILogger? logger = null) : base(shockerIds, intensityRange, durationRange, ShockerApi.OpenShockSerial, 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();
}
}