metaforce/Runtime/CPlayMovieBase.hpp

18 lines
488 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2015-08-27 00:23:46 +00:00
#include "Runtime/CIOWin.hpp"
#include "Runtime/Graphics/CMoviePlayer.hpp"
2015-08-27 00:23:46 +00:00
2021-04-10 08:42:06 +00:00
namespace metaforce {
2018-12-08 05:30:43 +00:00
class CPlayMovieBase : public CIOWin {
CMoviePlayer x18_moviePlayer;
2015-08-27 00:23:46 +00:00
public:
2018-12-08 05:30:43 +00:00
CPlayMovieBase(const char* iowName, const char* path) : CIOWin(iowName), x18_moviePlayer(path, 0.0, false, false) {}
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) override { return EMessageReturn::Normal; }
void Draw() override {}
2015-08-27 00:23:46 +00:00
};
2021-04-10 08:42:06 +00:00
} // namespace metaforce