SBSPSS/source/fx/fxbubble.h
2001-07-13 19:55:22 +00:00

22 lines
380 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);
protected:
u16 XIdx;
};
#endif