SBSPSS/source/enemy/nsklfish.h
Charles c210b4b263
2001-05-22 15:15:08 +00:00

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