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.

27 lines
748 B

  1. //========= Copyright � 1996-2005, 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(0.0f, 0.0f, 0.0f);
  20. int g_iSkillLevel = 0;
  21. bool g_fGameOver = false;