Working ... uh sort of .. on Windows now to try on Linux.

This commit is contained in:
Zed A. Shaw 2025-11-30 12:05:46 -05:00
parent a5c13d8654
commit 8f679dbe65
6 changed files with 66 additions and 37 deletions

View file

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