This commit is contained in:
parent
deb21add92
commit
6ee022b872
4 changed files with 427 additions and 0 deletions
37
source/fx/fxjfish.h
Normal file
37
source/fx/fxjfish.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/**********************/
|
||||
/*** JellyFish Legs ***/
|
||||
/**********************/
|
||||
|
||||
#ifndef __FX_FX_JELLYFISH_LEGS_HEADER__
|
||||
#define __FX_FX_JELLYFISH_LEGS_HEADER__
|
||||
|
||||
#include "fx/fx.h"
|
||||
|
||||
/*****************************************************************************/
|
||||
class CFXJellyFishLegs : public CFX
|
||||
{
|
||||
public:
|
||||
struct sList
|
||||
{
|
||||
DVECTOR Ofs;
|
||||
};
|
||||
|
||||
virtual void init();
|
||||
virtual void shutdown();
|
||||
virtual void think(int _frames);
|
||||
virtual void render();
|
||||
|
||||
void SetUp(int _Width,int _Gap,int _Length,int _Count);
|
||||
protected:
|
||||
|
||||
int XOfs;
|
||||
int Width,Gap;
|
||||
int Length,Count;
|
||||
|
||||
sList **FXList;
|
||||
int ListIdx;
|
||||
s16 *WidthTable;
|
||||
s16 *HeightTable;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue