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