SBSPSS/source/enemy/nsklfish.h
Charles 7478d3483b
2001-07-04 14:26:36 +00:00

32 lines
579 B
C++

/*=========================================================================
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:
bool processSensor();
void processClose( int _frames );
s32 getFrameShift( int _frames );
s32 m_chargeTime;
enum
{
SKELETAL_FISH_CHARGE_VELOCITY = 6,
};
};
#endif