aboutsummaryrefslogtreecommitdiff
path: root/src/input_common/input_mapping.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2022-01-24 11:42:05 -0500
committerLioncash <mathew1800@gmail.com>2022-01-24 11:49:31 -0500
commit0849be094e8bd55ee9d81bcc545238af134410e7 (patch)
tree860a7fba847d80fc8f47db4e1b80338945cce395 /src/input_common/input_mapping.h
parent8bb39750a1f0ebe9b9a30b58188198123e69598a (diff)
input_common/input_mapping: Add missing includes
Ensures that the class always sees the types it needs.
Diffstat (limited to 'src/input_common/input_mapping.h')
-rw-r--r--src/input_common/input_mapping.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/input_common/input_mapping.h b/src/input_common/input_mapping.h
index aac9aee64a..e0dfbc7ad1 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;