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

9
first_app.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include "first_app.hpp"
namespace cve {
void FirstApp::run() {
while (!cveWindow.shouldClose()) {
glfwPollEvents();
}
}
}