summaryrefslogtreecommitdiffstats
path: root/src/target.h
blob: 2f479dcc5c00a1adba70aec6134729ce498a4d56 (plain)
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
// target.h

#ifndef _TARGET_H_
#define	_TARGET_H_


#include "control.h"


class CD3DEngine;
class CObject;



class CTarget : public CControl
{
public:
	CTarget(CInstanceManager* iMan);
	~CTarget();

	BOOL		Create(FPOINT pos, FPOINT dim, int icon, EventMsg eventMsg);

	BOOL		EventProcess(const Event &event);
	void		Draw();
	BOOL		GetTooltip(FPOINT pos, char* name);

protected:
	CObject*	DetectFriendObject(FPOINT pos);

protected:
};


#endif //_TARGET_H_