feat: accent obert A
This commit is contained in:
parent
63d0524d3c
commit
3e31ecc943
5 changed files with 17 additions and 3 deletions
|
@ -5,9 +5,9 @@ namespace Domain {
|
|||
public class KeyHistory {
|
||||
private readonly LimitedSizeList<int> _lastPresses = new(10);
|
||||
|
||||
private readonly int[] _customKeys = { 191, 51, 222, 186 };
|
||||
private readonly bool[] _isPressed = new bool[26 + 5];
|
||||
private readonly bool[] _wasPressed = new bool[26 + 5];
|
||||
private readonly int[] _customKeys = { 191, 51, 222, 186, 0xBA };
|
||||
private readonly bool[] _isPressed = new bool[26 + 6];
|
||||
private readonly bool[] _wasPressed = new bool[26 + 6];
|
||||
|
||||
public void KeyPressed(int key) => _lastPresses.Add(key);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue