CShock/CShocker/Shockers/Abstract/SerialShocker.cs

12 lines
351 B
C#
Raw Normal View History

2024-01-17 04:11:30 +01:00
using CShocker.Shockers.ShockerSettings;
using Microsoft.Extensions.Logging;
namespace CShocker.Shockers.Abstract;
internal abstract class SerialShocker : Shocker
{
protected SerialShocker(SerialShockerSettings shockerSettings, ILogger? logger = null) : base(shockerSettings, logger)
{
throw new NotImplementedException();
}
}