diff options
| author | Sam C <[email protected]> | 2017-12-28 10:44:03 -0800 |
|---|---|---|
| committer | Sam C <[email protected]> | 2017-12-28 10:44:03 -0800 |
| commit | c801830bcc55380a23a32d9d11be106f4c2e50b6 (patch) | |
| tree | f330acd5433b2910daa088217e5230882a46da62 /project/vs2015.UWP/raylib.App.UWP/App.h | |
| parent | 9dbd30c44bd64fbefc78dce32128e196cb7f0da5 (diff) | |
| download | raylib-c801830bcc55380a23a32d9d11be106f4c2e50b6.tar.gz raylib-c801830bcc55380a23a32d9d11be106f4c2e50b6.zip | |
Add keyboard input
Diffstat (limited to 'project/vs2015.UWP/raylib.App.UWP/App.h')
| -rw-r--r-- | project/vs2015.UWP/raylib.App.UWP/App.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/project/vs2015.UWP/raylib.App.UWP/App.h b/project/vs2015.UWP/raylib.App.UWP/App.h index 3f27eeb0..66de6cc7 100644 --- a/project/vs2015.UWP/raylib.App.UWP/App.h +++ b/project/vs2015.UWP/raylib.App.UWP/App.h @@ -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; |
