This commit is contained in:
Charles 2001-04-20 12:03:03 +00:00
parent 59e41ee5af
commit 0327bca974

35
source/enemy/nclam.h Normal file
View File

@ -0,0 +1,35 @@
/*=========================================================================
nclam.cpp
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NCLAM_H__
#define __ENEMY_NCLAM_H__
class CNpcClamEnemy : public CNpcEnemy
{
protected:
virtual bool processSensor();
};
class CNpcJumpingClamEnemy : public CNpcClamEnemy
{
protected:
virtual void processClose( int _frames );
};
class CNpcStaticClamEnemy : public CNpcClamEnemy
{
protected:
virtual void processClose( int _frames );
};
#endif