zengine-old/test/littleVulkanEngine/src/main.cpp

20 lines
294 B
C++
Raw Normal View History

2023-07-05 09:27:55 +08:00
#include "Application/first_app.hpp"
// std
#include <cstdlib>
#include <iostream>
#include <stdexcept>
int main() {
lve::FirstApp app{};
try {
app.run();
} catch (const std::exception &e) {
std::cerr << e.what() << '\n';
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}