SBSPSS/source/fx/fxbubble.h
2001-07-03 16:55:37 +00:00

23 lines
400 B
C++

/*****************/
/*** 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);
void killFX(){};
protected:
u16 XIdx;
};
#endif