This commit is contained in:
Charles 2001-04-20 19:31:02 +00:00
parent 9aeb275990
commit 45af51650a

37
source/enemy/ndogfish.h Normal file
View file

@ -0,0 +1,37 @@
/*=========================================================================
ndogfish.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NDOGFISH_H__
#define __ENEMY_NDOGFISH_H__
class CNpcIronDogfishEnemy : public CNpcEnemy
{
public:
virtual void postInit();
protected:
virtual bool processSensor();
virtual void processClose( int _frames );
virtual void processMovement( int _frames );
void processStandardIronDogfishAttack( int _frames );
enum NPC_IRON_DOGFISH_STATE
{
IRON_DOGFISH_THUMP_1 = 0,
IRON_DOGFISH_LASER_EYE_1 = 1,
IRON_DOGFISH_THUMP_2,
IRON_DOGFISH_ROLL,
IRON_DOGFISH_LASER_EYE_2,
};
};
#endif