diff options
| author | Joe Ludwig <[email protected]> | 2013-06-26 15:22:04 -0700 |
|---|---|---|
| committer | Joe Ludwig <[email protected]> | 2013-06-26 15:22:04 -0700 |
| commit | 39ed87570bdb2f86969d4be821c94b722dc71179 (patch) | |
| tree | abc53757f75f40c80278e87650ea92808274aa59 /sp/src/game/server/hl2mp/hl2mp_cvars.cpp | |
| download | source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.tar.xz source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.zip | |
First version of the SOurce SDK 2013
Diffstat (limited to 'sp/src/game/server/hl2mp/hl2mp_cvars.cpp')
| -rw-r--r-- | sp/src/game/server/hl2mp/hl2mp_cvars.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sp/src/game/server/hl2mp/hl2mp_cvars.cpp b/sp/src/game/server/hl2mp/hl2mp_cvars.cpp new file mode 100644 index 00000000..cfca4217 --- /dev/null +++ b/sp/src/game/server/hl2mp/hl2mp_cvars.cpp @@ -0,0 +1,25 @@ +//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $NoKeywords: $
+//=============================================================================//
+
+#include "cbase.h"
+#include "hl2mp_cvars.h"
+
+
+
+// Ready restart
+ConVar mp_readyrestart(
+ "mp_readyrestart",
+ "0",
+ FCVAR_GAMEDLL,
+ "If non-zero, game will restart once each player gives the ready signal" );
+
+// Ready signal
+ConVar mp_ready_signal(
+ "mp_ready_signal",
+ "ready",
+ FCVAR_GAMEDLL,
+ "Text that each player must speak for the match to begin" );
\ No newline at end of file |