refactor: made all input readers sequential
This commit is contained in:
parent
5c721a3329
commit
2cae1eced7
18 changed files with 53 additions and 66 deletions
|
@ -1,5 +1,7 @@
|
|||
namespace Domain.Input {
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Domain.Input {
|
||||
public class CedillaReader : InputReader {
|
||||
protected override int Key { get; } = 0xBF; //VK_OEM_2 | cedilla
|
||||
public CedillaReader(KeyHistory history) : base(history, new List<int>{ 0xBF }) { }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue