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

24
src/Engine.hpp Normal file
View File

@@ -0,0 +1,24 @@
#pragma once
#include "Window.hpp"
class Engine {
public:
Engine(Window* window);
~Engine() = default;
void init();
// draw is called every render iteration in that while loop
void draw();
private:
// might get rid of this
Window* window_;
};