1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-20 04:26:03 +08:00
Files
hl2sdk/game/client/gametrace_client.cpp

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

2025-05-17 14:15:27 -04:00
//========= Copyright © 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;
}