blob: 17ce78ba26bfbf8c5ba5fecce7b5505610348860 (
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
24
25
26
27
28
29
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
class C_FuncMonitor : public C_BaseEntity
{
public:
DECLARE_CLASS( C_FuncMonitor, C_BaseEntity );
DECLARE_CLIENTCLASS();
// C_BaseEntity.
public:
virtual bool ShouldDraw();
};
IMPLEMENT_CLIENTCLASS_DT( C_FuncMonitor, DT_FuncMonitor, CFuncMonitor )
END_RECV_TABLE()
bool C_FuncMonitor::ShouldDraw()
{
return true;
}
|