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