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.

27 lines
705 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. /*
  9. ===== globals.cpp ========================================================
  10. DLL-wide global variable definitions.
  11. They're all defined here, for convenient centralization.
  12. Source files that need them should "extern ..." declare each
  13. variable, to better document what globals they care about.
  14. */
  15. #include "cbase.h"
  16. #include "soundent.h"
  17. // memdbgon must be the last include file in a .cpp file!!!
  18. #include "tier0/memdbgon.h"
  19. Vector g_vecAttackDir;
  20. int g_iSkillLevel;
  21. bool g_fGameOver;