refactor: made all input readers sequential

This commit is contained in:
Gerard Gascón 2024-04-17 16:54:31 +02:00
parent 5c721a3329
commit 2cae1eced7
18 changed files with 53 additions and 66 deletions

View file

@ -2,7 +2,7 @@
using System.Linq;
namespace Domain.Input {
public class LlReader : SequentialInputReader {
public class LlReader : InputReader {
public LlReader(KeyHistory history) : base(history, new List<int>{ 0x4C, 0x4C }) { }
}
}