checkpoint

This commit is contained in:
2026-04-11 23:57:57 -05:00
parent 44a5e2cab9
commit b196c97cf0
7 changed files with 15 additions and 4 deletions

View File

@@ -16,6 +16,7 @@ void App::init() {
utils::debugPrint(__FUNCTION__, __LINE__, "Init app.", utils::DebugLevel::Trace);
window_ = new Window();
engine_ = new Engine(window_);
}
@@ -34,6 +35,11 @@ int App::run() {
quit = true;
}
}
// pass vulkan handling to engine
// call engine.render() or something
// engine has a pointer to window so can handle pushing to the screen
}
// SDL teardown handled in window destructor