summaryrefslogtreecommitdiff
path: root/game/client/tf2/c_order_repair.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/client/tf2/c_order_repair.h')
-rw-r--r--game/client/tf2/c_order_repair.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/game/client/tf2/c_order_repair.h b/game/client/tf2/c_order_repair.h
new file mode 100644
index 0000000..ffb9d8c
--- /dev/null
+++ b/game/client/tf2/c_order_repair.h
@@ -0,0 +1,32 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $NoKeywords: $
+//=============================================================================//
+
+#ifndef C_ORDER_REPAIR_H
+#define C_ORDER_REPAIR_H
+#ifdef _WIN32
+#pragma once
+#endif
+
+
+#include "c_order.h"
+
+
+class C_OrderRepair : public C_Order
+{
+public:
+ DECLARE_CLASS( C_OrderRepair, C_Order );
+ DECLARE_CLIENTCLASS();
+
+
+// C_Order overrides.
+public:
+
+ virtual void GetDescription( char *pDest, int bufferSize );
+};
+
+
+#endif // C_ORDER_REPAIR_H