yuzu/src/core/frontend/applets/mii_edit.cpp

18 lines
438 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include "common/logging/log.h"
2022-03-17 07:01:03 +00:00
#include "core/frontend/applets/mii_edit.h"
namespace Core::Frontend {
2022-03-17 07:01:03 +00:00
MiiEditApplet::~MiiEditApplet() = default;
void DefaultMiiEditApplet::ShowMiiEdit(const MiiEditCallback& callback) const {
2022-03-17 07:01:03 +00:00
LOG_WARNING(Service_AM, "(STUBBED) called");
callback();
}
} // namespace Core::Frontend