mirror of https://github.com/PrimeDecomp/prime.git
21 lines
302 B
C++
21 lines
302 B
C++
#ifndef _CMOVIEPLAYER
|
|
#define _CMOVIEPLAYER
|
|
|
|
#include "types.h"
|
|
|
|
class CMoviePlayer {
|
|
public:
|
|
static void SetSfxVolume(uchar);
|
|
|
|
CMoviePlayer(const char*, float, bool, bool);
|
|
~CMoviePlayer();
|
|
|
|
void Update(float);
|
|
bool DrawVideo() const;
|
|
|
|
private:
|
|
char x0_pad[0x100];
|
|
};
|
|
|
|
#endif // _CMOVIEPLAYER
|