SBSPSS/source/enemy/nsklfish.h

32 lines
579 B
C
Raw Normal View History

2001-04-20 16:06:47 +02:00
/*=========================================================================
nsklfish.cpp
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NSKLFISH_H__
#define __ENEMY_NSKLFISH_H__
class CNpcSkeletalFishEnemy : public CNpcEnemy
{
protected:
2001-07-04 16:26:36 +02:00
bool processSensor();
void processClose( int _frames );
s32 getFrameShift( int _frames );
2001-05-22 17:15:08 +02:00
s32 m_chargeTime;
enum
{
SKELETAL_FISH_CHARGE_VELOCITY = 6,
};
2001-04-20 16:06:47 +02:00
};
#endif