vktutorial/main.cpp

21 lines
263 B
C++
Raw Normal View History

2024-02-21 13:28:50 +08:00
#include "first_app.hpp"
// std
#include <cstdlib>
#include <iostream>
#include <stdexcept>
int main()
{
hk::FirstApp app{};
try
{
app.run();
}
catch(const std::exception& e)
{
std::cerr << e.what() << '\n';
}
}