aboutsummaryrefslogtreecommitdiff
path: root/mwe/events/include/inputSystem.h
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-10-28 17:58:53 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-10-28 17:58:53 +0100
commit5e833bba513d97c39f4e0d26b45a9095c32812a6 (patch)
tree57c2c6dfdb977a60425c4ca25d21e79fd5f02cf2 /mwe/events/include/inputSystem.h
parentf2136f836f9b9e9a6a6698f7bc6fba85a27ebebf (diff)
button working
Diffstat (limited to 'mwe/events/include/inputSystem.h')
-rw-r--r--mwe/events/include/inputSystem.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/mwe/events/include/inputSystem.h b/mwe/events/include/inputSystem.h
new file mode 100644
index 0000000..06db74c
--- /dev/null
+++ b/mwe/events/include/inputSystem.h
@@ -0,0 +1,16 @@
+#pragma once
+#include <vector>
+#include "uiObject.h"
+#include "event.h"
+#include "keyCodes.h"
+#include "eventManager.h"
+class InputSystem {
+public:
+ InputSystem();
+ void registerButton(Button* button);
+ void processInput();
+
+private:
+ std::vector<Button*> buttons;
+ void processMouseClick(int mouseX, int mouseY);
+};