diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-26 22:37:52 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-26 22:37:52 -0400 |
commit | 8be1f74e878950cbbac3f05451341fc18892518b (patch) | |
tree | 8301f06ee0da2b27fb93b149736c6f7d2ace68ca /include/quest.hpp | |
parent | 19b2b1dde25885ada99deefe79266c2e22376e85 (diff) |
windows 64-bit build
Diffstat (limited to 'include/quest.hpp')
-rw-r--r-- | include/quest.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/quest.hpp b/include/quest.hpp index be9755f..3358d8f 100644 --- a/include/quest.hpp +++ b/include/quest.hpp @@ -71,6 +71,13 @@ public: * @return if the quest is active. */ static bool hasQuest(std::string title); + + static inline auto getQuestTitles(void) { + std::forward_list<std::string> titles; + for (const auto& q : current) + titles.emplace_front(q.name); + return titles;
+ } }; #endif // QUEST_HPP_ |