about summary refs log tree commit diff
path: root/src/engine/e_interface.h
diff options
context:
space:
mode:
authorJakob Fries <jakob.fries@gmail.com>2008-01-18 15:55:03 +0000
committerJakob Fries <jakob.fries@gmail.com>2008-01-18 15:55:03 +0000
commit7b73f1505212f7235db0987fb4e52549fdd73fb5 (patch)
tree4a7552c382e707cb463ab5bf7f5808e5d2124d9b /src/engine/e_interface.h
parent57c47659930c5e01ae5d3e8cef51c06d28d20508 (diff)
downloadzcatch-7b73f1505212f7235db0987fb4e52549fdd73fb5.tar.gz
zcatch-7b73f1505212f7235db0987fb4e52549fdd73fb5.zip
Console is now accessable in-game and has more commands: connect, disconnect, quit.
Diffstat (limited to 'src/engine/e_interface.h')
-rw-r--r--src/engine/e_interface.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/engine/e_interface.h b/src/engine/e_interface.h
index 534c29e1..73d2e01e 100644
--- a/src/engine/e_interface.h
+++ b/src/engine/e_interface.h
@@ -845,6 +845,15 @@ void mods_postsnap();
 /*
 	Group: Client Callbacks
 */
+
+/*
+	Function: modc_preinit
+		Called when the client starts, but before the engine is initialized.
+	
+	Remarks:
+*/
+void modc_preinit();
+
 /*
 	Function: modc_init
 		Called when the client starts.
@@ -1233,6 +1242,19 @@ int inp_mouse_doubleclick();
 	See Also:
 		<other_func>
 */
+void inp_clear_key_states();
+
+/*
+	Function: TODO
+	
+	Arguments:
+		arg1 - desc
+	
+	Returns:
+
+	See Also:
+		<other_func>
+*/
 int inp_key_presses(int key);
 
 /*