SdlWindowApiEventManager.hpp 582 B

12345678910111213141516171819202122232425
  1. /*
  2. * author: Patrick-Christopher Mattulat
  3. * e-mail: webmaster@lynarstudios.com
  4. */
  5. #ifndef LS_ATLANTIS_ENGINE_WINDOW_SDL_WINDOW_API_EVENT_MANAGER_HPP
  6. #define LS_ATLANTIS_ENGINE_WINDOW_SDL_WINDOW_API_EVENT_MANAGER_HPP
  7. #include <Export.hpp>
  8. #include <interface/IWindowApiEventManager.hpp>
  9. namespace ls::atlantis::window
  10. {
  11. class LS_ATLANTIS_DYNAMIC_GOAL SdlWindowApiEventManager : public ls::atlantis::interfaces::IWindowApiEventManager
  12. {
  13. public:
  14. SdlWindowApiEventManager();
  15. ~SdlWindowApiEventManager() override;
  16. void manage() override;
  17. };
  18. }
  19. #endif