aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-25 16:50:02 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-25 16:50:02 -0400
commitff93f760dd50f078779bdabcd41626a45bea6548 (patch)
treef0d3e452ae0d09968113c2a5b6abd8b966b03489 /src/main.cpp
parent5de39474dd9c17cc7f09015f291769fbe3fd5931 (diff)
created config class
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 5f39d95..814a2d4 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -21,6 +21,7 @@
#define GLEW_STATIC
#define SOL_ALL_SAFETIES_ON = 1
+#include "config.hpp"
#include "engine.hpp"
#include <SDL2/SDL.h>
@@ -42,9 +43,21 @@ 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;
}