| 52 | } |
| 53 | |
| 54 | void QuestManager::diskLoad(Json const& quests) { |
| 55 | m_quests = readQuests(quests.get("quests", JsonObject{})); |
| 56 | m_trackedQuestId = quests.optString("currentQuest"); |
| 57 | } |
| 58 | |
| 59 | Json QuestManager::diskStore() { |
| 60 | auto questPtrToJson = [](QuestPtr const& quest) { return quest->diskStore(); }; |
nothing calls this directly
no test coverage detected