summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/applet_mii_edit.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-09-21 18:54:04 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2023-09-22 02:21:39 +0200
commita57ca3fb66188335d4673d43099ad76ebfc5b4a2 (patch)
tree362413cf8a3d6ebc1deb24438a1db772c8de3413 /src/core/hle/service/am/applets/applet_mii_edit.h
parentMerge pull request #11555 from yuzu-emu/revert-11551-allow-save-imports-always (diff)
downloadyuzu-a57ca3fb66188335d4673d43099ad76ebfc5b4a2.tar
yuzu-a57ca3fb66188335d4673d43099ad76ebfc5b4a2.tar.gz
yuzu-a57ca3fb66188335d4673d43099ad76ebfc5b4a2.tar.bz2
yuzu-a57ca3fb66188335d4673d43099ad76ebfc5b4a2.tar.lz
yuzu-a57ca3fb66188335d4673d43099ad76ebfc5b4a2.tar.xz
yuzu-a57ca3fb66188335d4673d43099ad76ebfc5b4a2.tar.zst
yuzu-a57ca3fb66188335d4673d43099ad76ebfc5b4a2.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/applets/applet_mii_edit.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/am/applets/applet_mii_edit.h b/src/core/hle/service/am/applets/applet_mii_edit.h
index 3f46fae1b..7ff34af49 100644
--- a/src/core/hle/service/am/applets/applet_mii_edit.h
+++ b/src/core/hle/service/am/applets/applet_mii_edit.h
@@ -11,6 +11,11 @@ namespace Core {
class System;
} // namespace Core
+namespace Service::Mii {
+struct DatabaseSessionMetadata;
+class MiiManager;
+} // namespace Service::Mii
+
namespace Service::AM::Applets {
class MiiEdit final : public Applet {
@@ -40,6 +45,8 @@ private:
MiiEditAppletInputV4 applet_input_v4{};
bool is_complete{false};
+ std::shared_ptr<Mii::MiiManager> manager = nullptr;
+ Mii::DatabaseSessionMetadata metadata{};
};
} // namespace Service::AM::Applets