This commit is contained in:
parent
3f64caa8d5
commit
796aeddca7
39
source/enemy/nanemone.h
Normal file
39
source/enemy/nanemone.h
Normal 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
|
Loading…
Reference in New Issue
Block a user