summaryrefslogtreecommitdiff
path: root/src/d_event.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/d_event.h')
-rw-r--r--src/d_event.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/d_event.h b/src/d_event.h
index e47f82df..25334a96 100644
--- a/src/d_event.h
+++ b/src/d_event.h
@@ -89,6 +89,27 @@ typedef enum
} buttoncode_t;
+// villsa [STRIFE] Strife specific buttons
+// TODO - not finished
+typedef enum
+{
+ // Player view look up
+ BT2_LOOKUP = 1,
+ // Player view look down
+ BT2_LOOKDOWN = 2,
+ // Center player's view
+ BT2_CENTERVIEW = 4,
+ // Use inventory item
+ BT2_INVUSE = 8,
+ // Drop inventory item
+ BT2_INVDROP = 16,
+ // Jump up and down
+ BT2_JUMP = 32,
+ // Use medkit
+ BT2_HEALTH = 128,
+
+} buttoncode2_t;
+