diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 11:35:31 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 11:35:31 -0400 |
commit | 5fa8ec8586e3c9087fd68129e1b7d7f94e847a09 (patch) | |
tree | 451946789bd3fc0b79a80b5b3007d26c2159f428 /src/main.cpp | |
parent | 00da4d690af08d45788d770f9aadc9548438f074 (diff) |
begin config usage; text positioning
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 13 |
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; } |