summaryrefslogtreecommitdiff
path: root/game/client/tf2/c_order_resupply.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'game/client/tf2/c_order_resupply.cpp')
-rw-r--r--game/client/tf2/c_order_resupply.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/game/client/tf2/c_order_resupply.cpp b/game/client/tf2/c_order_resupply.cpp
new file mode 100644
index 0000000..ca71b93
--- /dev/null
+++ b/game/client/tf2/c_order_resupply.cpp
@@ -0,0 +1,19 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $NoKeywords: $
+//=============================================================================//
+#include "cbase.h"
+#include "c_order_resupply.h"
+
+
+IMPLEMENT_CLIENTCLASS_DT( C_OrderResupply, DT_OrderResupply, COrderResupply )
+END_RECV_TABLE()
+
+
+void C_OrderResupply::GetDescription( char *pDest, int bufferSize )
+{
+ Q_strncpy( pDest, "Build Resupply Station Near Object", bufferSize );
+}
+