summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/mii_edit.cpp
blob: fadb5fb15f4743eb0fa7a39ba2c3fc170abcf621 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2022 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/logging/log.h"
#include "core/frontend/applets/mii_edit.h"

namespace Core::Frontend {

MiiEditApplet::~MiiEditApplet() = default;

void DefaultMiiEditApplet::ShowMiiEdit(const std::function<void()>& callback) const {
    LOG_WARNING(Service_AM, "(STUBBED) called");

    callback();
}

} // namespace Core::Frontend