SBSPSS/source/enemy/neyeball.h
Charles 6c608b0aca
2001-05-16 19:04:40 +00:00

31 lines
616 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();
protected:
virtual void processEnemyCollision( CThing *thisThing );
virtual bool processSensor();
virtual void processClose( int _frames );
s32 m_fireHeading;
};
#endif