diff options
author | Tim Angus <tim@ngus.net> | 2006-04-15 23:53:51 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2006-04-15 23:53:51 +0000 |
commit | 55607e9767280b238fad1e7cdd9b560be9529b6e (patch) | |
tree | 8ffb40b91377c040cc1358223447870280fdefc7 /src/game/g_local.h | |
parent | 25fcd1f90c39ce5c7eb4dfab0fedb4388ad4289c (diff) |
* Lucifer cannon exploit fix (R1CH)
* Sudden death/time limit warnings (R1CH)
Diffstat (limited to 'src/game/g_local.h')
-rw-r--r-- | src/game/g_local.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h index 874afeee..1d6bc99e 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -478,6 +478,14 @@ typedef struct armourRegion_s qboolean crouch; } armourRegion_t; +//status of the warning of certain events +typedef enum +{ + TW_NOT = 0, + TW_IMMINENT, + TW_PASSED +} timeWarning_t; + // // this structure is cleared as each map is entered // @@ -593,6 +601,9 @@ typedef struct pTeam_t lastWin; + timeWarning_t suddenDeathWarning; + timeWarning_t timelimitWarning; + spawnQueue_t alienSpawnQueue; spawnQueue_t humanSpawnQueue; |