This commit is contained in:
parent
265bb99546
commit
cb014a96f2
20 changed files with 513 additions and 379 deletions
31
source/enemy/nfskull.h
Normal file
31
source/enemy/nfskull.h
Normal file
|
@ -0,0 +1,31 @@
|
|||
/*=========================================================================
|
||||
|
||||
nfskull.h
|
||||
|
||||
Author: CRB
|
||||
Created:
|
||||
Project: Spongebob
|
||||
Purpose:
|
||||
|
||||
Copyright (c) 2000 Climax Development Ltd
|
||||
|
||||
===========================================================================*/
|
||||
|
||||
#ifndef __ENEMY_NFSKULL_H__
|
||||
#define __ENEMY_NFSKULL_H__
|
||||
|
||||
class CNpcFlamingSkullEnemy : public CNpcEnemy
|
||||
{
|
||||
virtual void postInit();
|
||||
protected:
|
||||
virtual bool processSensor();
|
||||
virtual void processClose( int _frames );
|
||||
|
||||
enum NPC_FLAMING_SKULL_STATE
|
||||
{
|
||||
FLAMING_SKULL_ATTACK = 0,
|
||||
FLAMING_SKULL_RETURN = 1,
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue