This commit is contained in:
Charles 2001-05-10 22:19:02 +00:00
parent d2eff937c4
commit 30f38c3c45
2 changed files with 143 additions and 0 deletions

29
source/enemy/nbuttfly.h Normal file
View file

@ -0,0 +1,29 @@
/*=========================================================================
nbuttfly.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NBUTTFLY_H__
#define __ENEMY_NBUTTFLY_H__
#ifndef __ENEMY_NSJBACK_H__
#include "enemy\nsjback.h"
#endif
class CNpcButterflyBackgroundEnemy : public CNpcSmallJellyfishBackgroundEnemy
{
public:
virtual void render();
protected:
virtual void processMovementModifier( int _frames, s32 distX, s32 distY, s32 dist, s16 headingChange );
};
#endif