This commit is contained in:
Charles 2001-07-04 14:26:36 +00:00
parent d2971296b8
commit 7478d3483b
88 changed files with 260 additions and 260 deletions

View file

@ -25,11 +25,11 @@
class CNpcButterflyBackgroundEnemy : public CNpcSmallJellyfishBackgroundEnemy
{
public:
virtual void render();
virtual int getFrameCount() {return( FRM_BUTTERFLY_FLAP04 - FRM_BUTTERFLY_FLAP01 + 1 );}
virtual u8 canBeCaughtByNet() {return( false );}
void render();
int getFrameCount() {return( FRM_BUTTERFLY_FLAP04 - FRM_BUTTERFLY_FLAP01 + 1 );}
u8 canBeCaughtByNet() {return( false );}
protected:
virtual void processMovementModifier( int _frames, s32 distX, s32 distY, s32 dist, s16 headingChange );
void processMovementModifier( int _frames, s32 distX, s32 distY, s32 dist, s16 headingChange );
};
#endif