mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 22:55:40 +12:00
17 lines
No EOL
378 B
C++
17 lines
No EOL
378 B
C++
#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;
|
|
|
|
public:
|
|
AppletManager(Memory& mem);
|
|
void reset();
|
|
AppletBase* getApplet(u32 id);
|
|
};
|
|
} // namespace Applets
|