Add Skybox

This commit is contained in:
4VRDriver
2020-09-19 00:21:49 +02:00
parent 717447eebf
commit 242b50e9ef
14 changed files with 220 additions and 13 deletions

View File

@@ -9,7 +9,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;
}