From 8045b8ba04aae39a4cf9733e72413f648b6ebe2b Mon Sep 17 00:00:00 2001 From: tylermurphy534 Date: Sun, 18 Sep 2022 21:20:51 -0400 Subject: stanford dragon rendering --- src/main.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 src/main.cpp (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp new file mode 100755 index 0000000..30b64d9 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,18 @@ +#include "first_app.hpp" + +#include +#include +#include + +int main() { + xe::FirstApp app{}; + + try { + app.run(); + } catch (const std::exception &e) { + std::cerr << e.what() << '\n'; + return EXIT_FAILURE; + } + + return EXIT_SUCCESS; +} \ No newline at end of file -- cgit v1.2.3-freya