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
@@ -0,0 +1,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";
}