minecraftvulkan/src/main.cpp
2022-10-01 14:35:16 -04:00

18 lines
No EOL
297 B
C++
Executable file

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