SBSPSS/source/enemy/neyeball.h

40 lines
842 B
C
Raw Normal View History

2001-04-20 16:48:15 +02:00
/*=========================================================================
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
{
2001-05-11 18:27:23 +02:00
public:
2001-07-04 16:26:36 +02:00
void render();
2001-07-04 00:17:20 +02:00
void postInit();
void shutdown();
2001-07-04 16:26:36 +02:00
int getFrameCount() {return( 1 );}
void processEvent( GAME_EVENT evt, CThing *sourceThing );
2001-04-20 16:48:15 +02:00
protected:
2001-07-04 16:26:36 +02:00
void processEnemyCollision( CThing *thisThing );
bool processSensor();
void processClose( int _frames );
void processShotDeathStart( int _frames );
void processShotDeathEnd( int _frames );
2001-05-16 21:04:40 +02:00
s32 m_fireHeading;
2001-05-17 17:27:03 +02:00
enum
{
EYEBALL_DIST = 30,
};
2001-04-20 16:48:15 +02:00
};
#endif