mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 10:27:42 +00:00
More class stubs
This commit is contained in:
22
Runtime/CPlayMovieBase.hpp
Normal file
22
Runtime/CPlayMovieBase.hpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#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&) {}
|
||||
void Draw() const {}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __RETRO_CPLAYMOVIEBASE_HPP__
|
||||
Reference in New Issue
Block a user