Working ... uh sort of .. on Windows now to try on Linux.
This commit is contained in:
parent
a5c13d8654
commit
8f679dbe65
6 changed files with 66 additions and 37 deletions
15
main.cpp
15
main.cpp
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue