Files
fall-fever/main.cpp
2020-09-02 00:27:26 +02:00

24 lines
445 B
C++

#include <iostream>
#include <glad/glad.h>
#include <GLFW/glfw3.h>
#include <stb_image.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;
}