This commit is contained in:
Charles 2001-08-10 15:39:00 +00:00
parent 21e520c07c
commit 2bb870160d
2 changed files with 17 additions and 0 deletions

View File

@ -190,6 +190,22 @@ void CNpcMotherJellyfishEnemy::setupWaypoints( sThingActor *ThisActor )
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool CNpcMotherJellyfishEnemy::alwaysThink()
{
switch( m_state )
{
case MOTHER_JELLYFISH_BEGIN_CIRCLE:
case MOTHER_JELLYFISH_CIRCLE:
case MOTHER_JELLYFISH_EXIT:
return( true );
default:
return( false );
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcMotherJellyfishEnemy::processMovement( int _frames )
{
switch( m_state )

View File

@ -32,6 +32,7 @@ public:
virtual void renderOnMapScreen( DVECTOR drawPos );
void shutdown();
void setupWaypoints( sThingActor *ThisActor );
bool alwaysThink();
protected:
void processClose( int _frames );
void processMovement( int _frames );