This commit is contained in:
Charles 2001-04-19 20:19:21 +00:00
parent 1d8a44add4
commit 3d715a41b7

28
source/enemy/nhcrab.h Normal file
View file

@ -0,0 +1,28 @@
/*=========================================================================
nhcrab.cpp
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NHCRAB_H__
#ifndef __ENEMY_NPC_H__
#include "enemy\npc.h"
#endif
class CNpcHermitCrabEnemy : public CNpcEnemy
{
public:
protected:
virtual bool processSensor();
virtual void processClose( int _frames );
};
#endif