This commit is contained in:
Charles 2001-07-04 14:26:36 +00:00
parent d2971296b8
commit 7478d3483b
88 changed files with 260 additions and 260 deletions

View file

@ -17,17 +17,17 @@
class CNpcEyeballEnemy : public CNpcEnemy
{
public:
virtual void render();
void render();
void postInit();
void shutdown();
virtual int getFrameCount() {return( 1 );}
virtual void processEvent( GAME_EVENT evt, CThing *sourceThing );
int getFrameCount() {return( 1 );}
void processEvent( GAME_EVENT evt, CThing *sourceThing );
protected:
virtual void processEnemyCollision( CThing *thisThing );
virtual bool processSensor();
virtual void processClose( int _frames );
virtual void processShotDeathStart( int _frames );
virtual void processShotDeathEnd( int _frames );
void processEnemyCollision( CThing *thisThing );
bool processSensor();
void processClose( int _frames );
void processShotDeathStart( int _frames );
void processShotDeathEnd( int _frames );
s32 m_fireHeading;