aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-18 16:12:12 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-18 16:12:12 +0100
commit210ff1309aa545aa3574d991acc7734a1f268b8e (patch)
tree6b113c6a6c6bd39b5735526074dc5cb1df8860e4 /src/crepe/system
parentad5a0e04aec5e9e9cbbd54a665eff748e31bc1dc (diff)
added keycode conversion
Diffstat (limited to 'src/crepe/system')
-rw-r--r--src/crepe/system/InputSystem.cpp0
-rw-r--r--src/crepe/system/InputSystem.h14
2 files changed, 14 insertions, 0 deletions
diff --git a/src/crepe/system/InputSystem.cpp b/src/crepe/system/InputSystem.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/crepe/system/InputSystem.cpp
diff --git a/src/crepe/system/InputSystem.h b/src/crepe/system/InputSystem.h
new file mode 100644
index 0000000..642035f
--- /dev/null
+++ b/src/crepe/system/InputSystem.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "System.h"
+
+namespace crepe {
+
+class InputSystem : public System {
+public:
+ using System::System;
+ void update() override;
+ void
+};
+
+} // namespace crepe