aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/main.cpp b/main.cpp
index e17b910..4a41a3a 100644
--- a/main.cpp
+++ b/main.cpp
@@ -15,6 +15,8 @@ using namespace std::literals::chrono_literals;
#include <config.hpp>
#include <common.hpp>
#include <engine.hpp>
+#include <error.hpp>
+#include <fileio.hpp>
#include <gametime.hpp>
#include <window.hpp>
#include <world.hpp>
@@ -52,11 +54,6 @@ public:
std::string xmlFolder = "xml/";
/**
- * The current menu, if any are open (TODO why is this here)
- */
-Menu *currentMenu;
-
-/**
* The current center of the screen, updated in main render.
*/
vec2 offset;
@@ -135,7 +132,7 @@ int main(int argc, char *argv[])
game::engine.getSystem<InventorySystem>()->add("Debug", 3);
-
+ game::engine.getSystem<InventorySystem>()->take("Debug", 2);
std::list<SDL_Event> eventQueue;