summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/applet_mii_edit.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/applets/applet_mii_edit.h9
1 files changed, 6 insertions, 3 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 2b4b27c8f..e9ca0e2af 100644
--- a/src/core/hle/service/am/applets/applet_mii_edit.h
+++ b/src/core/hle/service/am/applets/applet_mii_edit.h
@@ -27,14 +27,17 @@ public:
void ExecuteInteractive() override;
void Execute() override;
- void DisplayCompleted(const Core::Frontend::MiiParameters& parameters);
+ void MiiEditOutput(MiiEditResult result, s32 index);
+
+ void MiiEditOutputForCharInfoEditing(MiiEditResult result, const MiiEditCharInfo& char_info);
private:
const Core::Frontend::MiiEditApplet& frontend;
Core::System& system;
- MiiAppletInput input_data{};
- AppletOutputForCharInfoEditing output_data{};
+ MiiEditAppletInputCommon applet_input_common{};
+ MiiEditAppletInputV3 applet_input_v3{};
+ MiiEditAppletInputV4 applet_input_v4{};
bool is_complete{false};
};