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

@ -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) { }
}
}