blob: 8aa516e06943bac7fd00a6560c049ab99e98654c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
|