summaryrefslogtreecommitdiff
path: root/src/d_event.h
diff options
context:
space:
mode:
authorSamuel Villareal2010-09-02 05:11:42 +0000
committerSamuel Villareal2010-09-02 05:11:42 +0000
commit42572cb925b9723cfa69ff37816de213d7d8a469 (patch)
treeb4103cbc59bbdb0560fc519910c1ba26f5ea16a3 /src/d_event.h
parent34aa87405686a3ef556ba0be677bd359e2151477 (diff)
downloadchocolate-doom-42572cb925b9723cfa69ff37816de213d7d8a469.tar.gz
chocolate-doom-42572cb925b9723cfa69ff37816de213d7d8a469.tar.bz2
chocolate-doom-42572cb925b9723cfa69ff37816de213d7d8a469.zip
+ Jumping/look/centerview actions added
+ button code/flags added for cmd->buttons2 Subversion-branch: /branches/strife-branch Subversion-revision: 1999
Diffstat (limited to 'src/d_event.h')
-rw-r--r--src/d_event.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/d_event.h b/src/d_event.h
index e47f82df..eb9211bb 100644
--- a/src/d_event.h
+++ b/src/d_event.h
@@ -89,6 +89,21 @@ typedef enum
} buttoncode_t;
+// villsa [STRIFE] Strife specific buttons
+// TODO - not finished
+typedef enum
+{
+ // Player view look up
+ BT_LOOKUP = 1,
+ // Player view look down
+ BT_LOOKDOWN = 2,
+ // Center player's view
+ BT_CENTERVIEW = 4,
+ // Jump up and down
+ BT_JUMP = 32,
+
+} buttoncode2_t;
+