Added vcpkg and fixed Windows build.

This commit is contained in:
2024-02-05 21:06:48 -08:00
parent 6b2f3e7247
commit 94ce3146c5
19 changed files with 93 additions and 50 deletions

View File

@@ -13,7 +13,7 @@ namespace ehs
public:
Keyboard();
Keyboard(Str_8 name, const UInt_64 id);
Keyboard(Str_8 name, UInt_64 id);
Keyboard(Keyboard&& hid) noexcept = default;
@@ -114,8 +114,8 @@ namespace ehs
static const Button Up;
static const Button Down;
static Button TranslateScanCode(const UInt_32 code);
static Button TranslateScanCode(UInt_32 code);
static Char_8 TranslateToEnglish_8(const bool shifted, const Button& button);
static Char_8 TranslateToEnglish_8(bool shifted, const Button& button);
};
}