This commit is contained in:
Charles 2001-06-06 13:27:46 +00:00
parent c3a34bf180
commit 4411c013b1
14 changed files with 209 additions and 32 deletions

View file

@ -19,12 +19,14 @@ class CNpcIronDogfishEnemy : public CNpcEnemy
public:
virtual void postInit();
protected:
virtual void processTimer( int _frames );
virtual bool processSensor();
virtual void processClose( int _frames );
virtual void processMovement( int _frames );
void processStandardIronDogfishAttack( int _frames );
void processWalkToUser( int _frames, int speed );
virtual void processAttackCollision();
virtual void hasBeenSteamed( DVECTOR &steamPos );
enum NPC_IRON_DOGFISH_STATE
{
@ -34,6 +36,8 @@ protected:
IRON_DOGFISH_ROLL,
IRON_DOGFISH_LASER_EYE_2,
};
s32 m_steamTimer;
};
#endif