Refactoring

This commit is contained in:
2022-10-09 17:34:23 +02:00
parent 028829a291
commit 41d09c2b5f
14 changed files with 53 additions and 88 deletions

View File

@@ -1,15 +1,15 @@
#include "Controller.h"
#include <GLFW/glfw3.h>
#include <iostream>
#include "Controller.h"
auto main(int argc, char **argv) -> int
{
// Suppress warning about unused variable
(void)argc;
(void)argv;
#ifdef _DEBUG
#ifndef NDEBUG
std::cout << "[Debug Mode]" << std::endl;
#endif