metaforce/Runtime/CPlayMovieBase.hpp

23 lines
539 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CPLAYMOVIEBASE_HPP__
#define __URDE_CPLAYMOVIEBASE_HPP__
2015-08-27 00:23:46 +00:00
#include "CIOWin.hpp"
2016-03-07 03:12:32 +00:00
#include "Graphics/CMoviePlayer.hpp"
2015-08-27 00:23:46 +00:00
2016-03-04 23:04:53 +00:00
namespace urde
2015-08-27 00:23:46 +00:00
{
class CPlayMovieBase : public CIOWin
{
CMoviePlayer x18_moviePlayer;
public:
CPlayMovieBase(const char* iowName, const char* path)
2016-03-07 03:12:32 +00:00
: CIOWin(iowName), x18_moviePlayer(path, 0.0, false, false) {}
2015-11-21 01:16:07 +00:00
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) {return EMessageReturn::Normal;}
2015-08-27 00:23:46 +00:00
void Draw() const {}
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CPLAYMOVIEBASE_HPP__