SBSPSS/source/enemy/neyeball.h

26 lines
556 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
{
virtual void postInit();
protected:
2001-04-24 21:03:06 +02:00
virtual void processEnemyCollision( CThing *thisThing );
2001-04-20 16:48:15 +02:00
virtual bool processSensor();
virtual void processClose( int _frames );
};
#endif