This commit is contained in:
parent
2fded56717
commit
8fc2f0e1df
6 changed files with 54 additions and 1 deletions
|
@ -34,7 +34,8 @@ public:
|
|||
enum NPC_UNIT_TYPE
|
||||
{
|
||||
NPC_SANDY_CHEEKS = 0,
|
||||
NPC_FALLING_ITEM = 1,
|
||||
NPC_GARY = 1,
|
||||
NPC_FALLING_ITEM,
|
||||
NPC_FISH_HOOK,
|
||||
NPC_DUST_DEVIL,
|
||||
NPC_PENDULUM,
|
||||
|
@ -173,6 +174,7 @@ protected:
|
|||
NPC_MOVEMENT_FIREBALL,
|
||||
NPC_MOVEMENT_RETURNING_HAZARD,
|
||||
NPC_MOVEMENT_CLAM_RETRACT,
|
||||
NPC_MOVEMENT_GARY,
|
||||
};
|
||||
|
||||
enum NPC_MOVEMENT_MODIFIER_FUNC
|
||||
|
@ -354,6 +356,10 @@ protected:
|
|||
void processFireballMovement( int _frames );
|
||||
void processReturningHazardMovement( int _frames );
|
||||
|
||||
// gary functions
|
||||
|
||||
void processGaryMovement( int _frames );
|
||||
|
||||
// data
|
||||
|
||||
static NPC_DATA m_data[NPC_UNIT_TYPE_MAX];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue