SBSPSS/source/enemy/neyeball.h
Charles 023382f336
2001-05-17 15:27:03 +00:00

39 lines
841 B
C++

/*=========================================================================
neyeball.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NEYEBALL_H__
#define __ENEMY_NEYEBALL_H__
class CNpcEyeballEnemy : public CNpcEnemy
{
public:
virtual void render();
virtual void postInit();
virtual void shutdown();
virtual int getFrameCount() {return( 1 );}
virtual void processEvent( GAME_EVENT evt, CThing *sourceThing );
protected:
virtual void processEnemyCollision( CThing *thisThing );
virtual bool processSensor();
virtual void processClose( int _frames );
virtual void processShot( int _frames );
s32 m_fireHeading;
enum
{
EYEBALL_DIST = 30,
};
};
#endif