source-engine/game/client/tf2/c_order_buildshieldwall.cpp

20 lines
524 B
C++
Raw Normal View History

2020-04-22 16:56:21 +00:00
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
#include "c_order_buildshieldwall.h"
IMPLEMENT_CLIENTCLASS_DT( C_OrderBuildShieldWall, DT_OrderBuildShieldWall, COrderBuildShieldWall )
END_RECV_TABLE()
void C_OrderBuildShieldWall::GetDescription( char *pDest, int bufferSize )
{
Q_strncpy( pDest, "Build Shield Wall To Protect Object", bufferSize );
}