feat: u dieresi

This commit is contained in:
Gerard Gascón 2024-04-18 17:02:24 +02:00
parent 9d5f64fd19
commit 2a82f7273a
4 changed files with 10 additions and 9 deletions

View file

@ -17,7 +17,7 @@ namespace Domain {
_readers.Add(new NyReader(_history));
_readers.Add(new TgReader(_history));
_readers.Add(new TjReader(_history));
_readers.Add(new LlReader(_history));
_readers.Add(new UDieresiReader(_history));
_readers.Add(new SsReader(_history));
_readers.Add(new AObertaReader(_history));
_readers.Add(new EObertaReader(_history));

View file

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

View file

@ -0,0 +1,9 @@
using System.Collections.Generic;
using System.Linq;
namespace Domain.Input {
public class UDieresiReader : InputReader {
public UDieresiReader(KeyHistory history) : base(history, new List<int> { VKeyCode.AccentClosed, VKeyCode.U },
VKeyCode.Shift, true) { }
}
}