This commit is contained in:
parent
9aeb275990
commit
45af51650a
1 changed files with 37 additions and 0 deletions
37
source/enemy/ndogfish.h
Normal file
37
source/enemy/ndogfish.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue