prime/include/Kyoto/Graphics/CMoviePlayer.hpp
Henrique Gemignani Passos Lima 020542afea Add wip CCredits
Former-commit-id: 7d627be624cc445dbb3d7c67d65892f7721fca8d
2023-01-30 23:17:54 +02:00

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