You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
627 B
27 lines
627 B
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
|
|
#include "core/frontend/applets/applet.h"
|
|
|
|
namespace Core::Frontend {
|
|
|
|
class MiiEditApplet : public Applet {
|
|
public:
|
|
using MiiEditCallback = std::function<void()>;
|
|
|
|
virtual ~MiiEditApplet();
|
|
|
|
virtual void ShowMiiEdit(const MiiEditCallback& callback) const = 0;
|
|
};
|
|
|
|
class DefaultMiiEditApplet final : public MiiEditApplet {
|
|
public:
|
|
void Close() const override;
|
|
void ShowMiiEdit(const MiiEditCallback& callback) const override;
|
|
};
|
|
|
|
} // namespace Core::Frontend
|