mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-16 17:50:04 +00:00
bcca849d0c
These are unused for now as we do not support a frontend implementation.
24 lines
514 B
C++
24 lines
514 B
C++
// Copyright 2022 yuzu Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#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
|