| 12345678910111213141516171819202122 |
- /*
- * author: Patrick-Christopher Mattulat
- * e-mail: webmaster@lynarstudios.com
- */
- #include <window/SdlApi.hpp>
- using ls::atlantis::window::SdlApi;
- SdlApi::SdlApi() = default;
- SdlApi::~SdlApi() = default;
- int SdlApi::Init(const SDL_InitFlags flags)
- {
- return SDL_Init(flags);
- }
- void SdlApi::Quit()
- {
- SDL_Quit();
- }
|