summaryrefslogtreecommitdiff
path: root/src/input_common/main.h
diff options
context:
space:
mode:
authorGravatar Lioncash2020-08-28 19:15:06 -0400
committerGravatar Lioncash2020-08-28 19:23:19 -0400
commit98f5d8a713966e960f0e4d4f520b67786ebad9d9 (patch)
treeadd88e20be7c3ba610304172ce115a3a8b5b91f6 /src/input_common/main.h
parentinput_common/main: Remove unimplemented prototype (diff)
downloadyuzu-98f5d8a713966e960f0e4d4f520b67786ebad9d9.tar.gz
yuzu-98f5d8a713966e960f0e4d4f520b67786ebad9d9.tar.xz
yuzu-98f5d8a713966e960f0e4d4f520b67786ebad9d9.zip
input_common/main: Remove unnecessary headers
Diffstat (limited to 'src/input_common/main.h')
-rw-r--r--src/input_common/main.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/input_common/main.h b/src/input_common/main.h
index ef52983e2..58e5dc250 100644
--- a/src/input_common/main.h
+++ b/src/input_common/main.h
@@ -8,13 +8,19 @@
8#include <string> 8#include <string>
9#include <unordered_map> 9#include <unordered_map>
10#include <vector> 10#include <vector>
11#include "input_common/gcadapter/gc_poller.h"
12#include "input_common/settings.h"
13 11
14namespace Common { 12namespace Common {
15class ParamPackage; 13class ParamPackage;
16} 14}
17 15
16namespace Settings::NativeAnalog {
17enum Values : int;
18}
19
20namespace Settings::NativeButton {
21enum Values : int;
22}
23
18namespace InputCommon { 24namespace InputCommon {
19namespace Polling { 25namespace Polling {
20 26