Files
maiden/src/App.hpp
homeburger fcdb09a142
Some checks failed
Build and Test verification / build (push) Failing after 25s
Build and Test verification / test (push) Has been skipped
hello vulkan
2026-05-09 20:22:51 -05:00

26 lines
260 B
C++

#pragma once
#include <iostream>
#include <cstdint>
#include "Window.hpp"
#include "Engine.hpp"
class App {
public:
App();
~App() = default;
int32_t run();
private:
Window* window_;
Engine* engine_;
bool rendering_ = true;
};