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

19 lines
463 B
C++
Raw Normal View History

// Copyright 2022 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#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 std::function<void()>& callback) const {
2022-03-17 07:01:03 +00:00
LOG_WARNING(Service_AM, "(STUBBED) called");
callback();
}
} // namespace Core::Frontend