SdlApi.cpp 325 B

12345678910111213141516171819202122
  1. /*
  2. * author: Patrick-Christopher Mattulat
  3. * e-mail: webmaster@lynarstudios.com
  4. */
  5. #include <window/SdlApi.hpp>
  6. using ls::atlantis::window::SdlApi;
  7. SdlApi::SdlApi() = default;
  8. SdlApi::~SdlApi() = default;
  9. int SdlApi::Init(const SDL_InitFlags flags)
  10. {
  11. return SDL_Init(flags);
  12. }
  13. void SdlApi::Quit()
  14. {
  15. SDL_Quit();
  16. }