This commit is contained in:
Paul 2001-02-01 17:01:12 +00:00
parent 7305dd575f
commit 499849fae1
6 changed files with 91 additions and 15 deletions

View file

@ -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;