App.h 352 B

12345678910111213141516171819202122232425
  1. #pragma once
  2. #include <string>
  3. #include "pch.h"
  4. // Define what header we use for BaseApp.h
  5. #define PCH "pch.h"
  6. // Enable hold hack
  7. #define HOLDHACK
  8. #include "BaseApp.h"
  9. namespace raylibUWP
  10. {
  11. ref class App sealed : public BaseApp
  12. {
  13. public:
  14. App();
  15. // IFrameworkView Methods.
  16. void Update() override;
  17. };
  18. }