feat: most sequential characters working

This commit is contained in:
Gerard Gascón 2024-04-15 00:15:39 +02:00
parent 77ee7a844e
commit 61c18429a2
20 changed files with 140 additions and 55 deletions

View file

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