This commit is contained in:
Charles 2001-04-19 22:07:43 +00:00
parent 3f64caa8d5
commit 796aeddca7

39
source/enemy/nanemone.h Normal file
View File

@ -0,0 +1,39 @@
/*=========================================================================
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