summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/mii.cpp
blob: 1c05ff412da371811ba24f9d3c04b468a4cbe06f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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.h"

namespace Core::Frontend {

MiiApplet::~MiiApplet() = default;

void DefaultMiiApplet::ShowMii(
    const MiiParameters& parameters,
    const std::function<void(const Core::Frontend::MiiParameters& parameters)> callback) const {
    LOG_INFO(Service_HID, "(STUBBED) called");
    callback(parameters);
}

} // namespace Core::Frontend