hello vulkan
Some checks failed
Build and Test verification / build (push) Failing after 25s
Build and Test verification / test (push) Has been skipped

This commit is contained in:
2026-05-09 20:22:51 -05:00
parent f72bd8c44f
commit fcdb09a142
7 changed files with 108 additions and 6 deletions

View File

@@ -5,7 +5,7 @@
#include <chrono>
#include <SDL3/SDL_events.h>
App::App(): window_(new Window()) {
App::App(): window_(new Window()), engine_(new Engine(window_)) {
// smart pointers might be a good idea
// since app will be the top level owner we can use unique ptrs for almost everything
}