mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 00:08:50 -05:00
20 lines
483 B
C++
20 lines
483 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::Close() const {}
|
|
|
|
void DefaultMiiEditApplet::ShowMiiEdit(const MiiEditCallback& callback) const {
|
|
LOG_WARNING(Service_AM, "(STUBBED) called");
|
|
|
|
callback();
|
|
}
|
|
|
|
} // namespace Core::Frontend
|