Reorganize and add License

This commit is contained in:
4VRDriver
2020-09-05 11:32:30 +02:00
parent 59e043a946
commit dead2521c8
24 changed files with 32 additions and 11 deletions

22
src/main.cpp Normal file
View File

@@ -0,0 +1,22 @@
#include <iostream>
#include <glad/glad.h>
#include <GLFW/glfw3.h>
#include "Controller.h"
int main(int argc, char** argv) {
// Suppress warning about unused variable
(void)argc; (void)argv;
#ifdef _DEBUG
std::cout << "[Debug Mode]" << std::endl;
#endif
// Create window
Controller *mainController = new Controller();
mainController->run();
delete mainController;
return 0;
}