diff options
| author | raysan5 <[email protected]> | 2018-07-21 15:44:06 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2018-07-21 15:44:06 +0200 |
| commit | 2875f4cf117c1f0db2cf841cbf28b983fc980d6e (patch) | |
| tree | 48ecf4f94af733388a24baef9ef957abff6625b0 /projects/VS2017/raylib.App.UWP/App.h | |
| parent | 6e812cf14700d4106ab941c3b2da02da06b0fb45 (diff) | |
| download | raylib-2875f4cf117c1f0db2cf841cbf28b983fc980d6e.tar.gz raylib-2875f4cf117c1f0db2cf841cbf28b983fc980d6e.zip | |
Remove VS2017 UWP project
Not properly configured, use VS2015.UWP as reference
Diffstat (limited to 'projects/VS2017/raylib.App.UWP/App.h')
| -rw-r--r-- | projects/VS2017/raylib.App.UWP/App.h | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/projects/VS2017/raylib.App.UWP/App.h b/projects/VS2017/raylib.App.UWP/App.h deleted file mode 100644 index 5b58528b..00000000 --- a/projects/VS2017/raylib.App.UWP/App.h +++ /dev/null @@ -1,49 +0,0 @@ -#pragma once - -#include <string> - -#include "pch.h" - -namespace raylibUWP -{ - ref class App sealed : public Windows::ApplicationModel::Core::IFrameworkView - { - public: - App(); - - // IFrameworkView Methods. - virtual void Initialize(Windows::ApplicationModel::Core::CoreApplicationView^ applicationView); - virtual void SetWindow(Windows::UI::Core::CoreWindow^ window); - virtual void Load(Platform::String^ entryPoint); - virtual void Run(); - virtual void Uninitialize(); - - protected: - - // Application lifecycle event handlers. - void OnActivated(Windows::ApplicationModel::Core::CoreApplicationView^ applicationView, Windows::ApplicationModel::Activation::IActivatedEventArgs^ args); - void OnResuming(Platform::Object^ sender, Platform::Object^ args); - - // Window event handlers. - void OnWindowSizeChanged(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::WindowSizeChangedEventArgs^ args); - void OnVisibilityChanged(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::VisibilityChangedEventArgs^ args); - void OnWindowClosed(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::CoreWindowEventArgs^ args); - - // DisplayInformation event handlers. - void OnDpiChanged(Windows::Graphics::Display::DisplayInformation^ sender, Platform::Object^ args); - void OnOrientationChanged(Windows::Graphics::Display::DisplayInformation^ sender, Platform::Object^ args); - - // Input event handlers - void PointerPressed(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::PointerEventArgs^ args); - void PointerReleased(Windows::UI::Core::CoreWindow ^sender, Windows::UI::Core::PointerEventArgs^ args); - void PointerWheelChanged(Windows::UI::Core::CoreWindow ^sender, Windows::UI::Core::PointerEventArgs^ args); - void MouseMoved(Windows::Devices::Input::MouseDevice^ mouseDevice, Windows::Devices::Input::MouseEventArgs^ args); - 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; - bool mWindowVisible; - }; -} |
