16 lines
219 B
C++
16 lines
219 B
C++
#include <vk_engine.h>
|
|
#include <memory>
|
|
#include <format>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
auto engine = std::make_unique<VulkanEngine>();
|
|
|
|
engine->init();
|
|
|
|
engine->run();
|
|
|
|
engine->cleanup();
|
|
|
|
return 0;
|
|
}
|