| 86 | } |
| 87 | |
| 88 | QuestParam QuestParam::fromJson(Json const& json) { |
| 89 | return QuestParam{ |
| 90 | questParamDetailFromJson(json), json.optString("name"), json.opt("portrait"), json.optString("indicator")}; |
| 91 | } |
| 92 | |
| 93 | QuestParamDetail questParamDetailDiskLoad(Json const& json) { |
| 94 | String type = json.getString("type"); |
nothing calls this directly
no test coverage detected