aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index 49d1dd9..c05a787 100644
--- a/main.cpp
+++ b/main.cpp
@@ -24,6 +24,7 @@ using namespace std::literals::chrono_literals;
#include <render.hpp>
#include <ui.hpp>
#include <inventory.hpp>
+#include <quest.hpp>
std::atomic_bool GameThread::pause;
@@ -107,6 +108,7 @@ int main(int argc, char *argv[])
WorldSystem::loader();
InventorySystem::load();
+ QuestSystem::load();
/////////////////////////////
// //
@@ -172,6 +174,7 @@ int main(int argc, char *argv[])
// save
game::briceSave();
+ QuestSystem::save();
InventorySystem::save();
WorldSystem::save();