Files
Cheap-Vulkan-Renderer/first_app.cpp

10 lines
142 B
C++

#include "first_app.hpp"
namespace cve {
void FirstApp::run() {
while (!cveWindow.shouldClose()) {
glfwPollEvents();
}
}
}