SBSPSS/source/fx/fxbubble.h

23 lines
400 B
C
Raw Normal View History

2001-06-01 17:10:05 +02:00
/*****************/
/*** Bubble FX ***/
/*****************/
2001-06-01 16:05:21 +02:00
2001-06-01 17:10:05 +02:00
#ifndef __FX_FX_BUBBLE_HEADER__
#define __FX_FX_BUBBLE_HEADER__
2001-06-01 16:05:21 +02:00
2001-06-01 17:10:05 +02:00
#include "fx/fxbaseanim.h"
2001-06-01 16:05:21 +02:00
/*****************************************************************************/
2001-06-01 17:10:05 +02:00
class CFXBubble : public CFXBaseAnim
2001-06-01 16:05:21 +02:00
{
public:
2001-07-03 18:55:37 +02:00
void init(DVECTOR const &Pos);
void think(int _frames);
void killFX(){};
2001-06-01 16:05:21 +02:00
protected:
2001-06-01 17:10:05 +02:00
u16 XIdx;
2001-06-01 16:05:21 +02:00
};
#endif