This commit is contained in:
parent
7b77c55d7f
commit
01e9f62ea7
2 changed files with 134 additions and 0 deletions
30
source/fx/fxnrgbar.h
Normal file
30
source/fx/fxnrgbar.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
/**********************/
|
||||
/*** 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
|
Loading…
Add table
Add a link
Reference in a new issue