aboutsummaryrefslogtreecommitdiff
path: root/src/psp/input.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/psp/input.h')
-rw-r--r--src/psp/input.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/psp/input.h b/src/psp/input.h
new file mode 100644
index 0000000..99adb9d
--- /dev/null
+++ b/src/psp/input.h
@@ -0,0 +1,21 @@
+#ifndef INPUT_H
+#define INPUT_H
+
+#include <oslib/oslib.h>
+
+typedef struct {
+ int pressed,
+ held,
+ released;
+} Button;
+
+Button btnUp, btnDown, btnLeft, btnRight;
+Button btnFaceUp, btnFaceDown, btnFaceLeft, btnFaceRight;
+Button btnL, btnR;
+Button btnStart, btnSelect;
+Button btnAccept, btnDecline;
+int axisX, axisY;
+
+void PHL_ScanInput();
+
+#endif \ No newline at end of file