blob: 200f8fd41a22d687fe970a2d46a346cd8e1ab2aa (
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
34
35
36
37
38
39
40
41
42
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: A place where vehicles can be built
//
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
//-----------------------------------------------------------------------------
// Purpose: A place where vehicles can be built
//-----------------------------------------------------------------------------
class C_FuncConstructionYard : public C_BaseEntity
{
DECLARE_CLASS( C_FuncConstructionYard, C_BaseEntity );
public:
DECLARE_CLIENTCLASS();
// DECLARE_MINIMAP_PANEL();
C_FuncConstructionYard();
const char *GetTargetDescription( void ) const;
};
IMPLEMENT_CLIENTCLASS_DT(C_FuncConstructionYard, DT_FuncConstructionYard, CFuncConstructionYard)
END_RECV_TABLE()
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
C_FuncConstructionYard::C_FuncConstructionYard()
{
// CONSTRUCT_MINIMAP_PANEL( "minimap_construction_yard", MINIMAP_RESOURCE_ZONES );
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
const char *C_FuncConstructionYard::GetTargetDescription( void ) const
{
return "Construction Yard";
}
|