diff options
Diffstat (limited to 'game/client/tf2/c_order_killmortarguy.cpp')
| -rw-r--r-- | game/client/tf2/c_order_killmortarguy.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/game/client/tf2/c_order_killmortarguy.cpp b/game/client/tf2/c_order_killmortarguy.cpp new file mode 100644 index 0000000..682a2f2 --- /dev/null +++ b/game/client/tf2/c_order_killmortarguy.cpp @@ -0,0 +1,22 @@ +//========= 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 ); +} + |