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.

32 lines
625 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. #include "cbase.h"
  7. #include "gametrace.h"
  8. // memdbgon must be the last include file in a .cpp file!!!
  9. #include "tier0/memdbgon.h"
  10. bool CGameTrace::DidHitWorld() const
  11. {
  12. return m_pEnt == ClientEntityList().GetBaseEntity( 0 );
  13. }
  14. bool CGameTrace::DidHitNonWorldEntity() const
  15. {
  16. return m_pEnt != NULL && !DidHitWorld();
  17. }
  18. int CGameTrace::GetEntityIndex() const
  19. {
  20. if ( m_pEnt )
  21. return m_pEnt->entindex();
  22. else
  23. return -1;
  24. }