mirror of https://github.com/AxioDL/metaforce.git
23 lines
517 B
C++
23 lines
517 B
C++
#ifndef __RETRO_CPLAYMOVIEBASE_HPP__
|
|
#define __RETRO_CPLAYMOVIEBASE_HPP__
|
|
|
|
#include "CIOWin.hpp"
|
|
#include "CMoviePlayer.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
|
|
class CPlayMovieBase : public CIOWin
|
|
{
|
|
CMoviePlayer x18_moviePlayer;
|
|
public:
|
|
CPlayMovieBase(const char* iowName, const char* path)
|
|
: CIOWin(iowName), x18_moviePlayer(path, 0.0, false) {}
|
|
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) {return MsgRetNormal;}
|
|
void Draw() const {}
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __RETRO_CPLAYMOVIEBASE_HPP__
|