diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-27 11:35:22 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-27 11:35:22 -0400 |
commit | 48cd8419bb274345fe386d47843f9aa16910e090 (patch) | |
tree | a0e31b43b0f38d6de8d3879b29563cfee1b19ced /main.cpp | |
parent | 8be1f74e878950cbbac3f05451341fc18892518b (diff) |
lua-scripted wandering
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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(); |