mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 22:27:41 +00:00
More class stubs
This commit is contained in:
30
Runtime/MP1/CPlayMovie.hpp
Normal file
30
Runtime/MP1/CPlayMovie.hpp
Normal file
@@ -0,0 +1,30 @@
|
||||
#ifndef __RETRO_CPLAYMOVIE_HPP__
|
||||
#define __RETRO_CPLAYMOVIE_HPP__
|
||||
|
||||
#include "CPlayMovieBase.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
namespace MP1
|
||||
{
|
||||
|
||||
extern const char* kMovies[];
|
||||
|
||||
class CPlayMovie : public CPlayMovieBase
|
||||
{
|
||||
public:
|
||||
enum EWhichMovie
|
||||
{
|
||||
MovieWinGame,
|
||||
MovieLoseGame
|
||||
};
|
||||
private:
|
||||
EWhichMovie x14_which;
|
||||
public:
|
||||
CPlayMovie(EWhichMovie which) : CPlayMovieBase("CPlayMovie", kMovies[which]), x14_which(which) {}
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif // __RETRO_CPLAYMOVIE_HPP__
|
||||
Reference in New Issue
Block a user