refactor: made the input reader expandable

This commit is contained in:
Gerard Gascón 2024-04-14 18:50:25 +02:00
parent 12304c6bb4
commit 59a3d96b5b
10 changed files with 72 additions and 24 deletions

View file

@ -0,0 +1,5 @@
namespace Domain.Input {
public class CedillaReader : InputReader {
protected override int Key { get; } = 0xBF; //VK_OEM_2 | cedilla
}
}