2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 15:51:20 +00:00
metaforce/Runtime/CPlayMovieBase.hpp
2015-08-30 17:44:42 -10:00

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__