#include "FaceApp.h" int main() { FaceApp app; app.initVulkan(); try { app.mainLoop(); } catch (const std::exception& e) { std::cerr << e.what() << std::endl; return EXIT_FAILURE; } app.cleanup(); return EXIT_SUCCESS; }