mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-01-11 11:50:06 +00:00
99ceb03a1c
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
23 lines
495 B
C++
23 lines
495 B
C++
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
|
|
namespace Core::Frontend {
|
|
|
|
class MiiEditApplet {
|
|
public:
|
|
virtual ~MiiEditApplet();
|
|
|
|
virtual void ShowMiiEdit(const std::function<void()>& callback) const = 0;
|
|
};
|
|
|
|
class DefaultMiiEditApplet final : public MiiEditApplet {
|
|
public:
|
|
void ShowMiiEdit(const std::function<void()>& callback) const override;
|
|
};
|
|
|
|
} // namespace Core::Frontend
|