This commit is contained in:
Daveo 2001-05-30 22:05:41 +00:00
parent 1f699b27eb
commit ebda143270
10 changed files with 90 additions and 81 deletions

View file

@ -1,14 +1,14 @@
/**********************/
/*** JellyFish Legs ***/
/**********************/
/******************/
/*** Energy Bar ***/
/******************/
#ifndef __FX_FX_JELLYFISH_LEGS_HEADER__
#define __FX_FX_JELLYFISH_LEGS_HEADER__
#ifndef __FX_FX_NRG_BAR_HEADER__
#define __FX_FX_NRG_BAR_HEADER__
#include "fx/fx.h"
/*****************************************************************************/
class CFXJellyFishLegs : public CFX
class CFXNRGBar : public CFX
{
public:
@ -17,14 +17,14 @@ virtual void shutdown();
virtual void think(int _frames);
virtual void render();
void Setup(int XOfs,int YOfs,bool XFlip);
void SetMax(int Max) {MaxHealth=Max-1;}
bool alwaysThink() {return(true);}
protected:
DVECTOR Ofs;
int Angle,AngleInc;
bool XFlip;
int GfxW,GfxHalfW;
int MaxHealth;
int CurrentW,DrawW;
};
#endif