This commit is contained in:
parent
59e41ee5af
commit
0327bca974
1 changed files with 35 additions and 0 deletions
35
source/enemy/nclam.h
Normal file
35
source/enemy/nclam.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue