aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 814a2d4..5f39d95 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -21,7 +21,6 @@
#define GLEW_STATIC
#define SOL_ALL_SAFETIES_ON = 1
-#include "config.hpp"
#include "engine.hpp"
#include <SDL2/SDL.h>
@@ -43,21 +42,9 @@ int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[])
Engine engine;
engine.init();
- //Config config;
- //config.add<int>("screenWidth");
- //config.add<int>("screenHeight");
- //config.add<std::string>("title");
- //config.load();
- //std::cout << *config.get<int>("screenWidth") << std::endl;
-
// Go go go!
engine.run();
- //config.set("screenWidth", 10000);
- //config.set("screenHeight", 481);
- //config.set("title", "gamEdevvv2");
- //config.save();
-
return 0;
}