mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
26 lines
No EOL
617 B
C++
26 lines
No EOL
617 B
C++
#pragma once
|
|
#include <optional>
|
|
|
|
#include "applets/error_applet.hpp"
|
|
#include "applets/mii_selector.hpp"
|
|
#include "applets/software_keyboard.hpp"
|
|
#include "helpers.hpp"
|
|
#include "memory.hpp"
|
|
#include "result/result.hpp"
|
|
|
|
namespace Applets {
|
|
class AppletManager {
|
|
MiiSelectorApplet miiSelector;
|
|
SoftwareKeyboardApplet swkbd;
|
|
ErrorApplet error;
|
|
std::optional<Applets::Parameter> nextParameter = std::nullopt;
|
|
|
|
public:
|
|
AppletManager(Memory& mem);
|
|
void reset();
|
|
AppletBase* getApplet(u32 id);
|
|
|
|
Applets::Parameter glanceParameter();
|
|
Applets::Parameter receiveParameter();
|
|
};
|
|
} // namespace Applets
|