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

24 lines
514 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.
#pragma once
#include <functional>
namespace Core::Frontend {
2022-03-17 07:01:03 +00:00
class MiiEditApplet {
public:
2022-03-17 07:01:03 +00:00
virtual ~MiiEditApplet();
virtual void ShowMiiEdit(const std::function<void()>& callback) const = 0;
};
2022-03-17 07:01:03 +00:00
class DefaultMiiEditApplet final : public MiiEditApplet {
public:
void ShowMiiEdit(const std::function<void()>& callback) const override;
};
} // namespace Core::Frontend