blob: fd541dda33c3208c28b6ae86c255e192e0fdc38d (
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
30
31
32
33
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef C_FUNC_CAPTURE_ZONE_H
#define C_FUNC_CAPTURE_ZONE_H
#ifdef _WIN32
#pragma once
#endif
class C_CaptureZone;
DECLARE_AUTO_LIST( ICaptureZoneAutoList );
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
class C_CaptureZone : public C_BaseEntity, public ICaptureZoneAutoList
{
DECLARE_CLASS( C_CaptureZone, C_BaseEntity );
public:
DECLARE_CLIENTCLASS();
bool IsDisabled( void ){ return m_bDisabled; }
private:
bool m_bDisabled;
};
#endif // C_FUNC_CAPTURE_ZONE_H
|