diff options
author | Lioncash <mathew1800@gmail.com> | 2022-01-24 17:42:05 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-01-24 17:49:31 +0100 |
commit | 0849be094e8bd55ee9d81bcc545238af134410e7 (patch) | |
tree | 860a7fba847d80fc8f47db4e1b80338945cce395 /src/input_common/input_mapping.h | |
parent | input_common/input_mapping: Remove const from return value (diff) | |
download | yuzu-0849be094e8bd55ee9d81bcc545238af134410e7.tar yuzu-0849be094e8bd55ee9d81bcc545238af134410e7.tar.gz yuzu-0849be094e8bd55ee9d81bcc545238af134410e7.tar.bz2 yuzu-0849be094e8bd55ee9d81bcc545238af134410e7.tar.lz yuzu-0849be094e8bd55ee9d81bcc545238af134410e7.tar.xz yuzu-0849be094e8bd55ee9d81bcc545238af134410e7.tar.zst yuzu-0849be094e8bd55ee9d81bcc545238af134410e7.zip |
Diffstat (limited to '')
-rw-r--r-- | src/input_common/input_mapping.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/input_common/input_mapping.h b/src/input_common/input_mapping.h index aac9aee64..e0dfbc7ad 100644 --- a/src/input_common/input_mapping.h +++ b/src/input_common/input_mapping.h @@ -3,8 +3,14 @@ // Refer to the license.txt file included #pragma once + +#include "common/param_package.h" #include "common/threadsafe_queue.h" +namespace InputCommon::Polling { +enum class InputType; +} + namespace InputCommon { class InputEngine; struct MappingData; |