summaryrefslogtreecommitdiff
path: root/game/client/tf2/c_order_assist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'game/client/tf2/c_order_assist.cpp')
-rw-r--r--game/client/tf2/c_order_assist.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/game/client/tf2/c_order_assist.cpp b/game/client/tf2/c_order_assist.cpp
new file mode 100644
index 0000000..ab18247
--- /dev/null
+++ b/game/client/tf2/c_order_assist.cpp
@@ -0,0 +1,22 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $NoKeywords: $
+//=============================================================================//
+#include "cbase.h"
+#include "c_order_assist.h"
+
+
+IMPLEMENT_CLIENTCLASS_DT( C_OrderAssist, DT_OrderAssist, COrderAssist )
+END_RECV_TABLE()
+
+
+void C_OrderAssist::GetDescription( char *pDest, int bufferSize )
+{
+ char targetDesc[512];
+ GetTargetDescription( targetDesc, sizeof( targetDesc ) );
+
+ Q_snprintf( pDest, bufferSize, "Assist %s", targetDesc );
+}
+