summaryrefslogtreecommitdiff
path: root/engine/cl_entityreport.h
blob: c11678f516b692927726aafff2195faf0e1c27ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//=============================================================================//
#if !defined( CL_ENTITYREPORT_H )
#define CL_ENTITYREPORT_H
#ifdef _WIN32
#pragma once
#endif

// Bits needed for action
void CL_RecordEntityBits( int entnum, int bitcount );

// Special events to record
void CL_RecordAddEntity( int entnum );
void CL_RecordLeavePVS( int entnum );
void CL_RecordDeleteEntity( int entnum, ClientClass *pclass );

extern ConVar cl_entityreport;

#endif // CL_ENTITYREPORT_H