summaryrefslogtreecommitdiff
path: root/game/client/tf2/c_order_buildshieldwall.cpp
blob: 11399177141d9b82fd32440a4c52ad1ddd5b14cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//========= 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 );
}