This commit is contained in:
Daveo 2001-07-21 16:47:51 +00:00
parent bd2c072e8f
commit 4561482812
2 changed files with 74 additions and 0 deletions

21
source/fx/fxfire.h Normal file
View file

@ -0,0 +1,21 @@
/*****************/
/*** Bubble FX ***/
/*****************/
#ifndef __FX_FX_BUBBLE_HEADER__
#define __FX_FX_BUBBLE_HEADER__
#include "fx/fxbaseanim.h"
/*****************************************************************************/
class CFXBubble : public CFXBaseAnim
{
public:
void init(DVECTOR const &Pos);
void think(int _frames);
protected:
u16 XIdx;
};
#endif