diff options
Diffstat (limited to 'game/server/tf2/order_resupply.h')
| -rw-r--r-- | game/server/tf2/order_resupply.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/game/server/tf2/order_resupply.h b/game/server/tf2/order_resupply.h new file mode 100644 index 0000000..8aa516e --- /dev/null +++ b/game/server/tf2/order_resupply.h @@ -0,0 +1,38 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef ORDER_RESUPPLY_H +#define ORDER_RESUPPLY_H +#ifdef _WIN32 +#pragma once +#endif + + +#include "orders.h" + + +class CPlayerClass; + + +class COrderResupply : public COrder +{ +public: + DECLARE_CLASS( COrderResupply, COrder ); + DECLARE_SERVERCLASS(); + + // Create an order for the player. + static bool CreateOrder( CPlayerClass *pClass ); + + +// COrder overrides. +public: + + virtual bool Update(); +}; + + +#endif // ORDER_RESUPPLY_H |