Add LightColor to imgui menu

This commit is contained in:
4VRDriver
2020-09-17 13:55:29 +02:00
parent 065ec8d7ae
commit ba5188e50b
10 changed files with 44 additions and 15 deletions

View File

@@ -9,7 +9,7 @@
Window::Window() {
width = INIT_WINDOW_WIDTH; height = INIT_WINDOW_HEIGHT;
window = glfwCreateWindow(width, height, "OpenGL", NULL, NULL);
window = glfwCreateWindow(width, height, "Fall-Fever", NULL, NULL);
if(!window) {
std::cout << "Failed to create window" << std::endl;
}