You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
594 B
23 lines
594 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
#include "cbase.h"
|
||
|
#include "c_order_killmortarguy.h"
|
||
|
|
||
|
|
||
|
IMPLEMENT_CLIENTCLASS_DT( C_OrderKillMortarGuy, DT_OrderKillMortarGuy, COrderKillMortarGuy )
|
||
|
END_RECV_TABLE()
|
||
|
|
||
|
|
||
|
void C_OrderKillMortarGuy::GetDescription( char *pDest, int bufferSize )
|
||
|
{
|
||
|
char targetDesc[512];
|
||
|
GetTargetDescription( targetDesc, sizeof( targetDesc ) );
|
||
|
|
||
|
Q_snprintf( pDest, bufferSize, "Kill Mortar Guy: %s", targetDesc );
|
||
|
}
|
||
|
|