| 1234567891011121314151617181920212223242526 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #ifndef LS_ATLANTIS_ENGINE_WINDOW_SDL_API_HPP
- #define LS_ATLANTIS_ENGINE_WINDOW_SDL_API_HPP
- #include <Export.hpp>
- #include <interface/ISdlApi.hpp>
- namespace ls::atlantis::window
- {
- class LS_ATLANTIS_DYNAMIC_GOAL SdlApi : public ls::atlantis::interfaces::ISdlApi
- {
- public:
- SdlApi();
- ~SdlApi() override;
- bool Init(SDL_InitFlags flags) override;
- void Quit() override;
- };
- }
- #endif
|