summaryrefslogtreecommitdiffhomepage
path: root/Controller.h
diff options
context:
space:
mode:
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;
+};