summaryrefslogtreecommitdiffhomepage
path: root/Controller.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-18 12:39:58 +0200
committerAki <please@ignore.pl>2022-04-18 12:39:58 +0200
commit97975da88cb25952af0c5ec75c130c66595d1807 (patch)
tree4ae958a28819cfbd55882451651fe4497e12b292 /Controller.h
parent7c9c492f1555bb84a43fc68a56f69c25b54e7346 (diff)
downloadbullethell2022-97975da88cb25952af0c5ec75c130c66595d1807.zip
bullethell2022-97975da88cb25952af0c5ec75c130c66595d1807.tar.gz
bullethell2022-97975da88cb25952af0c5ec75c130c66595d1807.tar.bz2
Added controller for player character
Diffstat (limited to 'Controller.h')
-rw-r--r--Controller.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Controller.h b/Controller.h
new file mode 100644
index 0000000..4839656
--- /dev/null
+++ b/Controller.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include <raylib.h>
+
+
+struct Controller
+{
+ virtual Vector2 direction() = 0;
+};