blob: c80f562d193299d9b2c87195e2e32cfffbd72f28 (
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_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
|