summaryrefslogtreecommitdiff
path: root/game/server/tf2/order_killmortarguy.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/server/tf2/order_killmortarguy.h')
-rw-r--r--game/server/tf2/order_killmortarguy.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/game/server/tf2/order_killmortarguy.h b/game/server/tf2/order_killmortarguy.h
new file mode 100644
index 0000000..c80f562
--- /dev/null
+++ b/game/server/tf2/order_killmortarguy.h
@@ -0,0 +1,38 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $NoKeywords: $
+//=============================================================================//
+
+#ifndef ORDER_KILLMORTARGUY_H
+#define ORDER_KILLMORTARGUY_H
+#ifdef _WIN32
+#pragma once
+#endif
+
+
+#include "order_player.h"
+
+
+class CPlayerClass;
+
+
+class COrderKillMortarGuy : public COrderPlayer
+{
+public:
+ DECLARE_CLASS( COrderKillMortarGuy, COrderPlayer );
+ DECLARE_SERVERCLASS();
+
+ // Create an order for the player.
+ static bool CreateOrder( CPlayerClass *pClass );
+
+
+// COrder overrides.
+public:
+
+ virtual bool UpdateOnEvent( COrderEvent_Base *pEvent );
+};
+
+
+#endif // ORDER_KILLMORTARGUY_H