This commit is contained in:
Paul 2001-02-09 17:01:04 +00:00
parent 0d4d68d560
commit abd4133a86
24 changed files with 429 additions and 164 deletions

View file

@ -22,6 +22,10 @@
#include "player/player.h"
#endif
#ifndef _FILEIO_HEADER_
#include "fileio\fileio.h"
#endif
/* Std Lib
------- */
@ -43,9 +47,26 @@ public:
u8 m_length;
}demoPlayerControl;
void loadControlData(FileEquate _fe);
int getFramesLeft();
virtual void shutdown();
protected:
virtual PLAYERINPUT readPadInput();
private:
char *m_demoData;
demoPlayerControl *m_controlData;
int m_controlDataSize;
int m_controlFrameCount;
int m_currentControlFrame;
int m_frameCount;
int m_totalFrameCount;
};