#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