This commit is contained in:
parent
7305dd575f
commit
499849fae1
6 changed files with 91 additions and 15 deletions
|
@ -34,6 +34,10 @@
|
|||
#include "player\pstates.h"
|
||||
#endif
|
||||
|
||||
#ifndef __SOUND_SOUND_H__
|
||||
#include "sound\sound.h"
|
||||
#endif
|
||||
|
||||
|
||||
/* Std Lib
|
||||
------- */
|
||||
|
@ -162,14 +166,26 @@ friend class CPlayerState;
|
|||
|
||||
|
||||
private:
|
||||
|
||||
typedef struct
|
||||
{
|
||||
PlayerMetrics m_metrics;
|
||||
class CPlayerState *m_states[NUM_STATES];
|
||||
}PlayerMode;
|
||||
|
||||
|
||||
|
||||
public:
|
||||
typedef struct
|
||||
{
|
||||
int m_frame;
|
||||
CSoundMediator::SFXID m_sfxId;
|
||||
} AnimFrameSfx;
|
||||
private:
|
||||
typedef struct
|
||||
{
|
||||
int m_numAnimFrameSfx;
|
||||
struct AnimFrameSfx *m_animFrameSfx;
|
||||
} AnimSfx;
|
||||
static AnimSfx s_animSfx[];
|
||||
int m_animFrame;
|
||||
int m_animNo;
|
||||
CSkel m_skel;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue