18 lines
630 B
C#
18 lines
630 B
C#
using CShocker.Ranges;
|
|
using CShocker.Shockers.Abstract;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace CShocker.Shockers.APIS;
|
|
|
|
public class OpenShockSerial : SerialShocker
|
|
{
|
|
public OpenShockSerial(List<string> shockerIds, IntensityRange intensityRange, DurationRange durationRange, ILogger? logger = null) : base(shockerIds, intensityRange, durationRange, ShockerApi.OpenShockSerial, logger)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
protected override void ControlInternal(ControlAction action, string shockerId, int intensity, int duration)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |