SdlApi.hpp 500 B

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