2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-06 14:33:27 +00:00
metaforce/Runtime/CPlayMovieBase.hpp
2016-03-04 13:04:53 -10:00

23 lines
526 B
C++

#ifndef __PSHAG_CPLAYMOVIEBASE_HPP__
#define __PSHAG_CPLAYMOVIEBASE_HPP__
#include "CIOWin.hpp"
#include "CMoviePlayer.hpp"
namespace urde
{
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 EMessageReturn::Normal;}
void Draw() const {}
};
}
#endif // __PSHAG_CPLAYMOVIEBASE_HPP__