blob: 28271b25af457ff69ed386023da67731e9c6db6d (
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
39
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef ORDER_HEAL_H
#define ORDER_HEAL_H
#ifdef _WIN32
#pragma once
#endif
#include "order_player.h"
class CPlayerClass;
class COrderHeal : public COrderPlayer
{
public:
DECLARE_CLASS( COrderHeal, COrderPlayer );
DECLARE_SERVERCLASS();
// Create an order for the player.
static bool CreateOrder( CPlayerClass *pClass );
// COrder overrides.
public:
virtual bool Update();
virtual bool UpdateOnEvent( COrderEvent_Base *pEvent );
};
#endif // ORDER_HEAL_H
|