?? explosion.h
字號(hào):
#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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =