Counter Strike : Global Offensive Source Code
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.

40 lines
858 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. #ifndef GAME_H
  9. #define GAME_H
  10. #include "globals.h"
  11. extern void GameDLLInit( void );
  12. extern ConVar displaysoundlist;
  13. extern ConVar mapcyclefile;
  14. extern ConVar servercfgfile;
  15. extern ConVar lservercfgfile;
  16. // multiplayer server rules
  17. extern ConVar teamplay;
  18. extern ConVar fraglimit;
  19. extern ConVar falldamage;
  20. extern ConVar weaponstay;
  21. extern ConVar forcerespawn;
  22. extern ConVar footsteps;
  23. extern ConVar flashlight;
  24. extern ConVar aimcrosshair;
  25. extern ConVar teamlist;
  26. extern ConVar teamoverride;
  27. extern ConVar defaultteam;
  28. extern ConVar allowNPCs;
  29. extern ConVar suitvolume;
  30. // Engine Cvars
  31. extern const ConVar *g_pDeveloper;
  32. #endif // GAME_H