From 51fed4abb32b32223551e31addb3ba1ab7578d88 Mon Sep 17 00:00:00 2001 From: trixie Date: Sun, 21 Apr 2024 20:53:10 -0400 Subject: [PATCH] add newlines --- src/Game/gamePlayReport.cpp | 2 ++ src/Game/gamePlayReport.h | 1 + 2 files changed, 3 insertions(+) diff --git a/src/Game/gamePlayReport.cpp b/src/Game/gamePlayReport.cpp index 76da9d4f..165010c5 100644 --- a/src/Game/gamePlayReport.cpp +++ b/src/Game/gamePlayReport.cpp @@ -6,6 +6,7 @@ #include "KingSystem/Quest/qstQuest.h" #include "KingSystem/System/ProductReporter.h" #include "KingSystem/System/StageInfo.h" + namespace uking { unsigned int getQuestId(const sead::SafeString& quest_name); void reportKorok(const sead::Vector3f& position) { @@ -50,6 +51,7 @@ void reportDungeon(const sead::SafeString& name, const sead::SafeString& event) reporter->saveReport(&report); } } + void reportQuestStep(const ksys::qst::Quest* quest, int step_index) { if (quest && step_index >= 0 && step_index < quest->mSteps.size()) { const sead::SafeString& name = quest->mName; diff --git a/src/Game/gamePlayReport.h b/src/Game/gamePlayReport.h index 69bdc8fc..c6a188fd 100644 --- a/src/Game/gamePlayReport.h +++ b/src/Game/gamePlayReport.h @@ -2,6 +2,7 @@ #include #include "KingSystem/System/PlayReportMgr.h" + namespace ksys::qst { struct Quest; }