SBSPSS/source/fx/fxnrgbar.h

31 lines
554 B
C
Raw Normal View History

2001-05-30 22:58:48 +02:00
/**********************/
/*** JellyFish Legs ***/
/**********************/
#ifndef __FX_FX_JELLYFISH_LEGS_HEADER__
#define __FX_FX_JELLYFISH_LEGS_HEADER__
#include "fx/fx.h"
/*****************************************************************************/
class CFXJellyFishLegs : public CFX
{
public:
virtual void init(DVECTOR const &Pos);
virtual void shutdown();
virtual void think(int _frames);
virtual void render();
void Setup(int XOfs,int YOfs,bool XFlip);
protected:
DVECTOR Ofs;
int Angle,AngleInc;
bool XFlip;
};
#endif