| 12345678910111213141516171819202122232425 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #ifndef LS_ATLANTIS_ENGINE_WINDOW_SDL_WINDOW_API_EVENT_MANAGER_HPP
- #define LS_ATLANTIS_ENGINE_WINDOW_SDL_WINDOW_API_EVENT_MANAGER_HPP
- #include <Export.hpp>
- #include <interface/IWindowApiEventManager.hpp>
- namespace ls::atlantis::window
- {
- class LS_ATLANTIS_DYNAMIC_GOAL SdlWindowApiEventManager : public ls::atlantis::interfaces::IWindowApiEventManager
- {
- public:
- SdlWindowApiEventManager();
- ~SdlWindowApiEventManager() override;
- void manage() override;
- };
- }
- #endif
|