blob: 20648571fa0e97ff767bcf56c3d35f36f6f3057c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#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;
};
|