SBSPSS/source/enemy/nsjfish.h

33 lines
715 B
C
Raw Normal View History

2001-04-19 22:05:09 +02:00
/*=========================================================================
2001-04-20 00:09:59 +02:00
nsjfish.h
2001-04-19 22:05:09 +02:00
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NSJFISH_H__
2001-04-20 00:09:59 +02:00
#define __ENEMY_NSJFISH_H__
2001-04-19 22:05:09 +02:00
#ifndef __ENEMY_NPC_H__
#include "enemy\npc.h"
#endif
class CNpcSmallJellyfishEnemy : public CNpcEnemy
{
public:
2001-04-20 00:09:59 +02:00
void render();
2001-04-20 18:13:23 +02:00
virtual int getFrameCount() {return( 6 );}
2001-04-19 22:05:09 +02:00
protected:
virtual bool processSensor();
virtual void processClose( int _frames );
virtual void processMovementModifier( int _frames, s32 distX, s32 distY, s32 dist, s16 headingChange );
};
#endif