diff options
author | Tony J. White <tjw@tjw.org> | 2009-10-03 11:44:02 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:17 +0000 |
commit | 122de31ac2834809fb15088eda6f5278d4525fb1 (patch) | |
tree | dcb4c460a2cae6df5195bd4eb21c32a7ee309ba1 /src/game/g_local.h | |
parent | 82ef46c4c099fbfed24fa326ee6f501ad5535a30 (diff) |
* voice chat stuff (no, not like TeamSpeak)
Diffstat (limited to 'src/game/g_local.h')
-rw-r--r-- | src/game/g_local.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h index d4e5b61a..8f5a19a9 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -356,6 +356,7 @@ typedef struct qboolean muted; qboolean denyBuild; int adminLevel; + char voice[ MAX_VOICE_NAME_LEN ]; } clientPersistant_t; #define MAX_UNLAGGED_MARKERS 10 @@ -452,6 +453,9 @@ struct gclient_s unlagged_t unlaggedBackup; unlagged_t unlaggedCalc; int unlaggedTime; + + float voiceEnthusiasm; + char lastVoiceCmd[ MAX_VOICE_CMD_LEN ]; int lcannonStartTime; @@ -638,6 +642,8 @@ typedef struct char layout[ MAX_QPATH ]; team_t surrenderTeam; + + voice_t *voices; } level_locals_t; #define CMD_CHEAT 0x01 @@ -1151,6 +1157,9 @@ extern vmCvar_t g_currentMap; extern vmCvar_t g_initialMapRotation; extern vmCvar_t g_chatTeamPrefix; +extern vmCvar_t g_debugVoices; +extern vmCvar_t g_voiceChats; + extern vmCvar_t g_shove; extern vmCvar_t g_mapConfigs; |