Files
fall-fever/main.cpp
2020-09-01 22:36:50 +02:00

25 lines
480 B
C++

#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;
#else
std::cout << "[Release Mode]" << std::endl;
#endif
// Create window
Controller *mainController = new Controller();
mainController->run();
delete mainController;
return 0;
}