diff options
author | bunnei <bunneidev@gmail.com> | 2020-08-27 14:58:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-27 14:58:44 -0400 |
commit | 3db9a259771a44278ff34168ba140c2c7815a1cf (patch) | |
tree | e341942ba33f882468837d763004ae7de5fe0053 /src/input_common/udp/udp.h | |
parent | 3f7b0e07721bf383325d874367efd7302e617fad (diff) | |
parent | 8ffc491546c8fa449e23463585e4b55498dcb307 (diff) |
Merge pull request #4530 from Morph1984/mjolnir-p1
Project Mjölnir: Part 1 - Input Rewrite
Diffstat (limited to 'src/input_common/udp/udp.h')
-rw-r--r-- | src/input_common/udp/udp.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/input_common/udp/udp.h b/src/input_common/udp/udp.h index 4f83f0441..672a5c812 100644 --- a/src/input_common/udp/udp.h +++ b/src/input_common/udp/udp.h @@ -5,19 +5,26 @@ #pragma once #include <memory> +#include <vector> +#include "common/param_package.h" namespace InputCommon::CemuhookUDP { class Client; +class UDPMotionFactory; +class UDPTouchFactory; class State { public: State(); ~State(); void ReloadUDPClient(); + std::vector<Common::ParamPackage> GetInputDevices() const; private: std::unique_ptr<Client> client; + std::shared_ptr<UDPMotionFactory> motion_factory; + std::shared_ptr<UDPTouchFactory> touch_factory; }; std::unique_ptr<State> Init(); |