This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $Workfile: $
// $Date: $
// $NoKeywords: $
//=============================================================================//
#if !defined( C_CONTROLZONE_H )
#define C_CONTROLZONE_H
#ifdef _WIN32
#pragma once
#endif
class ConVar;
//-----------------------------------------------------------------------------
// Purpose: Client side rep of control zone entity ( trigger, so not usually visible )
//-----------------------------------------------------------------------------
class C_ControlZone : public C_BaseEntity
{
public:
DECLARE_CLASS( C_ControlZone, C_BaseEntity );
DECLARE_CLIENTCLASS();
C_ControlZone();
virtual ~C_ControlZone();
virtual bool ShouldDraw();
virtual void OnDataChanged( DataUpdateType_t updateType );
public:
int m_nZoneNumber;
private:
const ConVar *m_pShowTriggers;
};
#endif // C_CONTROLZONE_H