about summary refs log tree commit diff
path: root/src/game/client/gc_client.h
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2008-03-22 11:45:48 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2008-03-22 11:45:48 +0000
commit7797a651676ec47ab79222210f50c5aa4da80d7f (patch)
tree41bbd5f147fe6afc250522266abc4d7d6e2a270c /src/game/client/gc_client.h
parentbede40f27d36f71014d7f4f3a1f1ae14f52caf0c (diff)
downloadzcatch-7797a651676ec47ab79222210f50c5aa4da80d7f.tar.gz
zcatch-7797a651676ec47ab79222210f50c5aa4da80d7f.zip
changed the bindings commands to bind, unbind and dump_binds. added broadcast messages. fixed so that cl_editor works
Diffstat (limited to 'src/game/client/gc_client.h')
-rw-r--r--src/game/client/gc_client.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/game/client/gc_client.h b/src/game/client/gc_client.h
index 6e63ce6f..b3a42561 100644
--- a/src/game/client/gc_client.h
+++ b/src/game/client/gc_client.h
@@ -75,8 +75,6 @@ enum
 	CHATMODE_NONE=0,
 	CHATMODE_ALL,
 	CHATMODE_TEAM,
-	//CHATMODE_CONSOLE,
-	//CHATMODE_REMOTECONSOLE,
 };
 
 extern int chat_mode;
@@ -84,6 +82,10 @@ void chat_add_line(int client_id, int team, const char *line);
 void chat_reset();
 bool chat_input_handle(INPUT_EVENT e, void *user_data);
 
+// broadcasts
+extern char broadcast_text[1024];
+extern int64 broadcast_time;
+
 // line input helter
 class line_input
 {