mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-16 08:20:04 +00:00
18 lines
438 B
C++
18 lines
438 B
C++
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "common/logging/log.h"
|
|
#include "core/frontend/applets/mii_edit.h"
|
|
|
|
namespace Core::Frontend {
|
|
|
|
MiiEditApplet::~MiiEditApplet() = default;
|
|
|
|
void DefaultMiiEditApplet::ShowMiiEdit(const MiiEditCallback& callback) const {
|
|
LOG_WARNING(Service_AM, "(STUBBED) called");
|
|
|
|
callback();
|
|
}
|
|
|
|
} // namespace Core::Frontend
|