summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2Balloon.h
blob: f9017e37c77a6d8d02a46ea1e2d17de6d735db66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef T2DLL_T2BALLOON_H
#define T2DLL_T2BALLOON_H
#include "../common.h"

class AFX_CLASS_EXPORT T2Balloon {
public:
	T2Balloon();
	virtual ~T2Balloon();
	void Show(int inX, int inY, const CString& inText, BOOL inDoPause);

protected:
	friend class T2TowerMessage;

	DWORD mEndTime;
	BOOL mDoPause;
	T2BitImage *mImage;
	T2ImageObj *mImageObj;
	int mSpriteID;
};
#endif