This commit is contained in:
parent
941c1fe3db
commit
9172c5cadf
2 changed files with 78 additions and 2 deletions
|
@ -72,6 +72,7 @@ protected:
|
|||
u8 isSnakeStopped();
|
||||
void moveEntireSnake( DVECTOR newPos );
|
||||
void addHealthMeter();
|
||||
void updateTail( DVECTOR &oldPos, int _frames );
|
||||
|
||||
enum
|
||||
{
|
||||
|
@ -81,6 +82,12 @@ protected:
|
|||
NPC_SEA_SNAKE_CIRCLE_ANTICLOCKWISE = 2,
|
||||
};
|
||||
|
||||
enum SEA_SNAKE_STATES
|
||||
{
|
||||
SEA_SNAKE_VERTICAL_LINEUP = 0,
|
||||
SEA_SNAKE_CHARGE = 1,
|
||||
};
|
||||
|
||||
// position history stuff
|
||||
|
||||
class CNpcPositionHistory
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue