about summary refs log tree commit diff
path: root/src/engine/e_if_inp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/e_if_inp.h')
-rw-r--r--src/engine/e_if_inp.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/engine/e_if_inp.h b/src/engine/e_if_inp.h
index b95f1177..8e0ea2c2 100644
--- a/src/engine/e_if_inp.h
+++ b/src/engine/e_if_inp.h
@@ -10,8 +10,16 @@
 /*
 	Structure: INPUT_EVENT
 */
+enum
+{
+	INPFLAG_PRESS=1,
+	INPFLAG_RELEASE=2,
+	INPFLAG_REPEAT=4
+};
+
 typedef struct
 {
+	int flags;
 	char ch;
 	int key;
 } INPUT_EVENT;