From 1d8a44add4092fe9937b70badd106b45e0c33326 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 19 Apr 2001 20:05:09 +0000 Subject: [PATCH] --- source/enemy/nsjfish.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 source/enemy/nsjfish.h diff --git a/source/enemy/nsjfish.h b/source/enemy/nsjfish.h new file mode 100644 index 000000000..8de1cc266 --- /dev/null +++ b/source/enemy/nsjfish.h @@ -0,0 +1,29 @@ +/*========================================================================= + + nsjfish.cpp + + Author: CRB + Created: + Project: Spongebob + Purpose: + + Copyright (c) 2000 Climax Development Ltd + +===========================================================================*/ + +#ifndef __ENEMY_NSJFISH_H__ + +#ifndef __ENEMY_NPC_H__ +#include "enemy\npc.h" +#endif + +class CNpcSmallJellyfishEnemy : public CNpcEnemy +{ +public: +protected: + virtual bool processSensor(); + virtual void processClose( int _frames ); + virtual void processMovementModifier( int _frames, s32 distX, s32 distY, s32 dist, s16 headingChange ); +}; + +#endif