main.cpp 172 B

123456789
  1. #include "saura/app/app.hpp"
  2. int main() {
  3. auto *app_ctx = new (saura::App);
  4. app_ctx->run();
  5. // TODO: вызывает вылет!
  6. // delete app_ctx;
  7. return 0;
  8. }