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

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


#include "c_order.h"


// Orders that point at players.
class C_OrderPlayer : public C_Order
{
public:
	DECLARE_CLASS( C_OrderPlayer, C_Order );
	DECLARE_CLIENTCLASS();


// C_Order overrides.
public:

	virtual void	GetTargetDescription( char *pDest, int bufferSize );
};


#endif // C_ORDER_PLAYER_H