| 1234567891011121314151617181920212223 |
- #include "first_app.h"
- // STD
- #include <cstdlib>
- #include <iostream>
- #include <stdexcept>
- int main(int argc, char* argv[])
- {
- coral_3d::first_app app{};
- try
- {
- app.run();
- }
- catch (const std::exception& e)
- {
- std::cerr << e.what() << "\n";
- return EXIT_FAILURE;
- }
- return EXIT_SUCCESS;
- }
|