Window with own structure

This commit is contained in:
2026-02-20 02:05:56 +00:00
parent eb79d538de
commit 294edcdcff
10 changed files with 93 additions and 42 deletions

15
first_app.hpp Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#include "cve_window.hpp"
namespace cve {
class FirstApp {
public:
static constexpr int WIDTH = 800;
static constexpr int HEIGHT = 600;
void run();
private:
CveWindow cveWindow{WIDTH, HEIGHT, "Hello Vulkan!"};
};
}