| 12345678910111213141516171819202122232425262728 |
- /*
- * 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;
- SDL_Window *CreateWindow(const char *_title, int _width, int _height, SDL_WindowFlags _flags) override;
- void DestroyWindow(SDL_Window *_window) override;
- bool Init(SDL_InitFlags flags) override;
- void Quit() override;
- };
- }
- #endif
|