Add keyboard input

This commit is contained in:
Sam C
2017-12-28 10:44:03 -08:00
parent 9dbd30c44b
commit c801830bcc
34 changed files with 252 additions and 16 deletions

View File

@ -33,6 +33,10 @@ namespace raylibUWP
void OnDpiChanged(Windows::Graphics::Display::DisplayInformation^ sender, Platform::Object^ args);
void OnOrientationChanged(Windows::Graphics::Display::DisplayInformation^ sender, Platform::Object^ args);
// Input Event Handlers
void OnKeyDown(Windows::UI::Core::CoreWindow ^ sender, Windows::UI::Core::KeyEventArgs ^ args);
void OnKeyUp(Windows::UI::Core::CoreWindow ^ sender, Windows::UI::Core::KeyEventArgs ^ args);
private:
bool mWindowClosed;