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.

41 lines
875 B

  1. //========= Copyright 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 decalfrequency;
  26. extern ConVar teamlist;
  27. extern ConVar teamoverride;
  28. extern ConVar defaultteam;
  29. extern ConVar allowNPCs;
  30. extern ConVar suitvolume;
  31. // Engine Cvars
  32. extern const ConVar *g_pDeveloper;
  33. #endif // GAME_H