2001-04-20 18:53:05 +02:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
nsstomp.h
|
|
|
|
|
|
|
|
Author: CRB
|
|
|
|
Created:
|
|
|
|
Project: Spongebob
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
Copyright (c) 2000 Climax Development Ltd
|
|
|
|
|
|
|
|
===========================================================================*/
|
|
|
|
|
|
|
|
#ifndef __ENEMY_NSSTOMP_H__
|
|
|
|
#define __ENEMY_NSSTOMP_H__
|
|
|
|
|
|
|
|
class CNpcSkullStomperEnemy : public CNpcEnemy
|
|
|
|
{
|
|
|
|
public:
|
2001-07-04 00:17:20 +02:00
|
|
|
void postInit();
|
2001-07-10 22:02:11 +02:00
|
|
|
u8 hasBeenAttacked() {return(false);}
|
2001-04-20 18:53:05 +02:00
|
|
|
protected:
|
2001-07-04 16:26:36 +02:00
|
|
|
void processEnemyCollision( CThing *thisThing );
|
|
|
|
bool processSensor();
|
|
|
|
void processClose( int _frames );
|
|
|
|
void collidedWith(CThing *_thisThing);
|
2001-04-20 18:53:05 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|