Light attenuation

This commit is contained in:
4VRDriver
2020-09-06 22:32:46 +02:00
parent 6cf551ffb4
commit 1442d81549
3 changed files with 26 additions and 5 deletions

View File

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