csgo-2018-source/game/client/gametrace_client.cpp

33 lines
625 B
C++
Raw Permalink Normal View History

2021-07-24 21:11:47 -07:00
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#include "cbase.h"
#include "gametrace.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
bool CGameTrace::DidHitWorld() const
{
return m_pEnt == ClientEntityList().GetBaseEntity( 0 );
}
bool CGameTrace::DidHitNonWorldEntity() const
{
return m_pEnt != NULL && !DidHitWorld();
}
int CGameTrace::GetEntityIndex() const
{
if ( m_pEnt )
return m_pEnt->entindex();
else
return -1;
}