diff options
Diffstat (limited to 'src/input_common/udp/udp.h')
| -rw-r--r-- | src/input_common/udp/udp.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/input_common/udp/udp.h b/src/input_common/udp/udp.h new file mode 100644 index 000000000..ea3de60bb --- /dev/null +++ b/src/input_common/udp/udp.h | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | // Copyright 2018 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include <memory> | ||
| 6 | #include <unordered_map> | ||
| 7 | #include "input_common/main.h" | ||
| 8 | #include "input_common/udp/client.h" | ||
| 9 | |||
| 10 | namespace InputCommon::CemuhookUDP { | ||
| 11 | |||
| 12 | class UDPTouchDevice; | ||
| 13 | class UDPMotionDevice; | ||
| 14 | |||
| 15 | class State { | ||
| 16 | public: | ||
| 17 | State(); | ||
| 18 | ~State(); | ||
| 19 | void ReloadUDPClient(); | ||
| 20 | |||
| 21 | private: | ||
| 22 | std::unique_ptr<Client> client; | ||
| 23 | }; | ||
| 24 | |||
| 25 | std::unique_ptr<State> Init(); | ||
| 26 | |||
| 27 | } // namespace InputCommon::CemuhookUDP | ||