diff options
author | bunnei <bunneidev@gmail.com> | 2018-12-23 14:35:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-23 14:35:13 -0500 |
commit | f95f6c7d86af9857cb737a741fc847bf2c5d8413 (patch) | |
tree | b5c02a35cdb18b78c648bc3a6f98b87e68d2e651 /src/core/core.h | |
parent | d08bdc861f056cd217fb58b3cbe9beb2357d9d22 (diff) | |
parent | e11e65b3d63fabd7c953cca07971364984021c3e (diff) |
Merge pull request #1781 from DarkLordZach/applet-profile-select
am: Implement HLE profile selector applet
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index 71031dfcf..869921493 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -11,6 +11,7 @@ #include "common/common_types.h" #include "core/file_sys/vfs_types.h" #include "core/hle/kernel/object.h" +#include "frontend/applets/profile_select.h" namespace Core::Frontend { class EmuWindow; @@ -241,6 +242,10 @@ public: std::shared_ptr<FileSys::VfsFilesystem> GetFilesystem() const; + void SetProfileSelector(std::unique_ptr<Core::Frontend::ProfileSelectApplet> applet); + + const Core::Frontend::ProfileSelectApplet& GetProfileSelector() const; + void SetSoftwareKeyboard(std::unique_ptr<Core::Frontend::SoftwareKeyboardApplet> applet); const Core::Frontend::SoftwareKeyboardApplet& GetSoftwareKeyboard() const; |