Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
603 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #include "cbase.h"
  8. #include "hl2mp_cvars.h"
  9. // Ready restart
  10. ConVar mp_readyrestart(
  11. "mp_readyrestart",
  12. "0",
  13. FCVAR_GAMEDLL,
  14. "If non-zero, game will restart once each player gives the ready signal" );
  15. // Ready signal
  16. ConVar mp_ready_signal(
  17. "mp_ready_signal",
  18. "ready",
  19. FCVAR_GAMEDLL,
  20. "Text that each player must speak for the match to begin" );