diff options
author | bunnei <bunneidev@gmail.com> | 2020-07-04 10:05:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-04 10:05:59 -0400 |
commit | 9f8e17cb185d0d769ab81ef8de906cef37947ea5 (patch) | |
tree | 0ae185ce3ef43ef9b085aae7b9ad5abb04e3d239 /src/input_common/main.h | |
parent | 3096adb3471af1b094d670751e476c337007d299 (diff) | |
parent | f829932ed191ad469df01342191bf2725e8a20bb (diff) |
Merge pull request #4137 from ameerj/master
GC Adapter Implementation
Diffstat (limited to 'src/input_common/main.h')
-rw-r--r-- | src/input_common/main.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/input_common/main.h b/src/input_common/main.h index 77a0ce90b..0e32856f6 100644 --- a/src/input_common/main.h +++ b/src/input_common/main.h @@ -7,6 +7,7 @@ #include <memory> #include <string> #include <vector> +#include "input_common/gcadapter/gc_poller.h" namespace Common { class ParamPackage; @@ -30,6 +31,10 @@ class MotionEmu; /// Gets the motion emulation factory. MotionEmu* GetMotionEmu(); +GCButtonFactory* GetGCButtons(); + +GCAnalogFactory* GetGCAnalogs(); + /// Generates a serialized param package for creating a keyboard button device std::string GenerateKeyboardParam(int key_code); |