This commit is contained in:
parent
097cb0daf5
commit
3433e86071
2 changed files with 73 additions and 7 deletions
|
@ -100,11 +100,23 @@ protected:
|
|||
CNpcPositionHistory *prev;
|
||||
};
|
||||
|
||||
class CNpcSpacingHistory
|
||||
{
|
||||
public:
|
||||
u8 spacing;
|
||||
CNpcSpacingHistory *next;
|
||||
CNpcSpacingHistory *prev;
|
||||
};
|
||||
|
||||
u8 m_segmentCount;
|
||||
CNpcSeaSnakeSegment m_segmentArray[NPC_SEA_SNAKE_LENGTH];
|
||||
|
||||
CNpcPositionHistory *m_positionHistory;
|
||||
CNpcPositionHistory m_positionHistoryArray[NPC_SEA_SNAKE_SPACING * NPC_SEA_SNAKE_LENGTH];
|
||||
CNpcPositionHistory m_positionHistoryArray[NPC_SEA_SNAKE_SPACING * NPC_SEA_SNAKE_LENGTH * 2];
|
||||
|
||||
CNpcSpacingHistory *m_spacingHistory;
|
||||
CNpcSpacingHistory m_spacingHistoryArray[NPC_SEA_SNAKE_LENGTH];
|
||||
|
||||
s32 m_collTimer;
|
||||
s32 m_snapTimer;
|
||||
//s32 m_openTimer;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue