#include "Controller.h" #include #include auto main(int argc, char **argv) -> int { // Suppress warning about unused variable (void)argc; (void)argv; #ifndef NDEBUG std::cout << "[Debug Mode]" << std::endl; #endif { // Create controller Controller controller; controller.run(); } glfwTerminate(); return 0; }