⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 explosion.h

📁 s60源码
💻 H
字号:
#ifndef EXPLOSION_H
#define EXPLOSION_H


#include <e32base.h>
#include <eikenv.h>

class CBitmapContext;
class CFbsBitmap;

/**
 *
 * @class	CExplosion Explosion.h
 * @brief	This class creates the explosion
 *
 * Copyright (c) EMCC Software Ltd 2003
 * @version	1.0
 *
 */

class CExplosion : public CBase
	{
	public:
		static CExplosion* NewL(TPoint aPoint);
		static CExplosion* NewLC(TPoint aPoint);
		~CExplosion();
		void BlitCurrentFrame(CBitmapContext& aBitmapContext);
		TBool IsFinished();

	private:
		CExplosion(TPoint aPoint);
		void ConstructL();

	private:
		RPointerArray<CFbsBitmap> iBitmapArray;
		RPointerArray<CFbsBitmap> iMasksArray;
		TInt iCurrentFrame;
		TPoint iPoint;
		TBool iDescending;

	};

#endif //EXPLOSION_H



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -