feat: accent and dieresi characters properly detected

This commit is contained in:
Gerard Gascón 2024-04-16 21:07:56 +02:00
parent 6b289eecfd
commit ea6745e30d
5 changed files with 14 additions and 2 deletions

View file

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