summaryrefslogtreecommitdiff
path: root/game/server/tf2/order_player.h
blob: d757eed95099e08ef90dec480e8ec3fc17db3164 (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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//=============================================================================//

#ifndef ORDER_PLAYER_H
#define ORDER_PLAYER_H
#ifdef _WIN32
#pragma once
#endif


#include "orders.h"


class COrderPlayer : public COrder
{
public:
	DECLARE_CLASS( COrderPlayer, COrder );
	DECLARE_SERVERCLASS();


// COrder overrides.
public:

	virtual bool	UpdateOnEvent( COrderEvent_Base *pEvent );
};


#endif // ORDER_PLAYER_H