minecraftvulkan/src/main.cpp
2022-09-19 21:28:41 -04:00

18 lines
296 B
C++
Executable file

#include "first_app.hpp"
#include <cstdlib>
#include <iostream>
#include <stdexcept>
int main() {
app::FirstApp app{};
try {
app.run();
} catch (const std::exception &e) {
std::cerr << e.what() << '\n';
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}