metaforce/Runtime/MP1/CPlayMovie.hpp

31 lines
484 B
C++
Raw Normal View History

2015-08-27 00:23:46 +00:00
#ifndef __RETRO_CPLAYMOVIE_HPP__
#define __RETRO_CPLAYMOVIE_HPP__
#include "CPlayMovieBase.hpp"
namespace Retro
{
namespace MP1
{
extern const char* kMovies[];
class CPlayMovie : public CPlayMovieBase
{
public:
2015-11-21 01:16:07 +00:00
enum class EWhichMovie
2015-08-27 00:23:46 +00:00
{
2015-11-21 01:16:07 +00:00
WinGame,
LoseGame
2015-08-27 00:23:46 +00:00
};
private:
EWhichMovie x14_which;
public:
2015-11-21 01:16:07 +00:00
CPlayMovie(EWhichMovie which) : CPlayMovieBase("CPlayMovie", kMovies[int(which)]), x14_which(which) {}
2015-08-27 00:23:46 +00:00
};
}
}
#endif // __RETRO_CPLAYMOVIE_HPP__