10 lines
142 B
C++
10 lines
142 B
C++
#include "first_app.hpp"
|
|
|
|
namespace cve {
|
|
void FirstApp::run() {
|
|
while (!cveWindow.shouldClose()) {
|
|
glfwPollEvents();
|
|
}
|
|
}
|
|
}
|