This commit is contained in:
parent
13bbe59b16
commit
60967afba4
1 changed files with 32 additions and 0 deletions
32
source/enemy/nscrab.h
Normal file
32
source/enemy/nscrab.h
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
/*=========================================================================
|
||||||
|
|
||||||
|
nscrab.h
|
||||||
|
|
||||||
|
Author: CRB
|
||||||
|
Created:
|
||||||
|
Project: Spongebob
|
||||||
|
Purpose:
|
||||||
|
|
||||||
|
Copyright (c) 2000 Climax Development Ltd
|
||||||
|
|
||||||
|
===========================================================================*/
|
||||||
|
|
||||||
|
#ifndef __ENEMY_NSCRAB_H__
|
||||||
|
#define __ENEMY_NSCRAB_H__
|
||||||
|
|
||||||
|
#ifndef __ENEMY_NPC_H__
|
||||||
|
#include "enemy\npc.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
class CNpcSpiderCrabEnemy : public CNpcEnemy
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
protected:
|
||||||
|
virtual bool processSensor();
|
||||||
|
virtual void processClose( int _frames );
|
||||||
|
virtual void processCollision();
|
||||||
|
virtual void processMovement( int _frames );
|
||||||
|
void processSpiderCrabInitJumpMovement( int _frames );
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
Loading…
Add table
Add a link
Reference in a new issue