This commit is contained in:
parent
61f7098fe9
commit
86885c3b68
33
source/enemy/nfdutch.h
Normal file
33
source/enemy/nfdutch.h
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/*=========================================================================
|
||||||
|
|
||||||
|
nfdutch.cpp
|
||||||
|
|
||||||
|
Author: CRB
|
||||||
|
Created:
|
||||||
|
Project: Spongebob
|
||||||
|
Purpose:
|
||||||
|
|
||||||
|
Copyright (c) 2000 Climax Development Ltd
|
||||||
|
|
||||||
|
===========================================================================*/
|
||||||
|
|
||||||
|
#ifndef __ENEMY_NFDUTCH_H__
|
||||||
|
#define __ENEMY_NFDUTCH_H__
|
||||||
|
|
||||||
|
class CNpcFlyingDutchmanEnemy : public CNpcEnemy
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
virtual void postInit();
|
||||||
|
protected:
|
||||||
|
virtual void processClose( int _frames );
|
||||||
|
virtual void processMovement( int _frames );
|
||||||
|
|
||||||
|
enum NPC_FLYING_DUTCHMAN_STATE
|
||||||
|
{
|
||||||
|
FLYING_DUTCHMAN_ATTACK_PLAYER_1 = 0,
|
||||||
|
FLYING_DUTCHMAN_ATTACK_PLAYER_2 = 1,
|
||||||
|
FLYING_DUTCHMAN_ATTACK_PLAYER_3,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user