summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorGravatar bunnei2018-12-23 14:35:13 -0500
committerGravatar GitHub2018-12-23 14:35:13 -0500
commitf95f6c7d86af9857cb737a741fc847bf2c5d8413 (patch)
treeb5c02a35cdb18b78c648bc3a6f98b87e68d2e651 /src/core/core.h
parentMerge pull request #1780 from DarkLordZach/controller-profiles (diff)
parentapplets: Correct event ResetTypes from OneShot to Sticky (diff)
downloadyuzu-f95f6c7d86af9857cb737a741fc847bf2c5d8413.tar.gz
yuzu-f95f6c7d86af9857cb737a741fc847bf2c5d8413.tar.xz
yuzu-f95f6c7d86af9857cb737a741fc847bf2c5d8413.zip
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.h5
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 @@
11#include "common/common_types.h" 11#include "common/common_types.h"
12#include "core/file_sys/vfs_types.h" 12#include "core/file_sys/vfs_types.h"
13#include "core/hle/kernel/object.h" 13#include "core/hle/kernel/object.h"
14#include "frontend/applets/profile_select.h"
14 15
15namespace Core::Frontend { 16namespace Core::Frontend {
16class EmuWindow; 17class EmuWindow;
@@ -241,6 +242,10 @@ public:
241 242
242 std::shared_ptr<FileSys::VfsFilesystem> GetFilesystem() const; 243 std::shared_ptr<FileSys::VfsFilesystem> GetFilesystem() const;
243 244
245 void SetProfileSelector(std::unique_ptr<Core::Frontend::ProfileSelectApplet> applet);
246
247 const Core::Frontend::ProfileSelectApplet& GetProfileSelector() const;
248
244 void SetSoftwareKeyboard(std::unique_ptr<Core::Frontend::SoftwareKeyboardApplet> applet); 249 void SetSoftwareKeyboard(std::unique_ptr<Core::Frontend::SoftwareKeyboardApplet> applet);
245 250
246 const Core::Frontend::SoftwareKeyboardApplet& GetSoftwareKeyboard() const; 251 const Core::Frontend::SoftwareKeyboardApplet& GetSoftwareKeyboard() const;