main.cxx 234 B

12345678910111213
  1. #include "SDL.hxx"
  2. #include <cstdlib>
  3. int main(int argc, char** argv) try
  4. {
  5. SDL sdl{};
  6. return EXIT_SUCCESS;
  7. } catch (std::exception const& ex) {
  8. SDL_LogError(SDL_LOG_CATEGORY_ERROR, "%s", ex.what());
  9. return EXIT_FAILURE;
  10. }