mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 13:47:43 +00:00
New code style refactor
This commit is contained in:
@@ -3,18 +3,15 @@
|
||||
#include "CIOWin.hpp"
|
||||
#include "Graphics/CMoviePlayer.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
namespace urde {
|
||||
|
||||
class CPlayMovieBase : public CIOWin {
|
||||
CMoviePlayer x18_moviePlayer;
|
||||
|
||||
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 {}
|
||||
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 {}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
} // namespace urde
|
||||
|
||||
Reference in New Issue
Block a user