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.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/d_event.h b/src/d_event.h
index eb9211bb..25334a96 100644
--- a/src/d_event.h
+++ b/src/d_event.h
@@ -94,13 +94,19 @@ typedef enum
typedef enum
{
// Player view look up
- BT_LOOKUP = 1,
+ BT2_LOOKUP = 1,
// Player view look down
- BT_LOOKDOWN = 2,
+ BT2_LOOKDOWN = 2,
// Center player's view
- BT_CENTERVIEW = 4,
+ BT2_CENTERVIEW = 4,
+ // Use inventory item
+ BT2_INVUSE = 8,
+ // Drop inventory item
+ BT2_INVDROP = 16,
// Jump up and down
- BT_JUMP = 32,
+ BT2_JUMP = 32,
+ // Use medkit
+ BT2_HEALTH = 128,
} buttoncode2_t;