2001-04-21 18:45:40 +02:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
npbug.h
|
|
|
|
|
|
|
|
Author: CRB
|
|
|
|
Created:
|
|
|
|
Project: Spongebob
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
Copyright (c) 2001 Climax Development Ltd
|
|
|
|
|
|
|
|
===========================================================================*/
|
|
|
|
|
|
|
|
#ifndef __ENEMY_NPBUG_H__
|
|
|
|
#define __ENEMY_NPBUG_H__
|
|
|
|
|
2001-04-26 17:20:21 +02:00
|
|
|
#ifndef __ENEMY_NPC_H__
|
|
|
|
#include "enemy\npc.h"
|
|
|
|
#endif
|
|
|
|
|
2001-04-21 18:45:40 +02:00
|
|
|
class CNpcPricklyBugEnemy : public CNpcEnemy
|
|
|
|
{
|
2001-04-26 17:20:21 +02:00
|
|
|
protected:
|
2001-07-04 16:26:36 +02:00
|
|
|
void processMovementModifier( int _frames, s32 distX, s32 distY, s32 dist, s16 headingChange );
|
2001-04-21 18:45:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|