2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 07:11:20 +00:00
metaforce/Runtime/CPlayMovieBase.hpp
2018-10-06 17:42:33 -10:00

21 lines
442 B
C++

#pragma once
#include "CIOWin.hpp"
#include "Graphics/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, false) {}
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) {return EMessageReturn::Normal;}
void Draw() const {}
};
}