SBSPSS/source/enemy/nanemone.h
Charles 796aeddca7
2001-04-19 22:07:43 +00:00

39 lines
649 B
C++

/*=========================================================================
nanemone.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NANEMONE_H__
#define __ENEMY_NANEMONE_H__
#ifndef __ENEMY_NPC_H__
#include "enemy\npc.h"
#endif
class CNpcAnemoneEnemy : public CNpcEnemy
{
protected:
virtual bool processSensor();
};
class CNpcAnemone1Enemy : public CNpcAnemoneEnemy
{
};
class CNpcAnemone2Enemy : public CNpcAnemoneEnemy
{
};
class CNpcAnemone3Enemy : public CNpcAnemoneEnemy
{
};
#endif