metaforce/Runtime/MP1/CPlayMovie.cpp

31 lines
514 B
C++
Raw Normal View History

#include "CPlayMovie.hpp"
2017-12-29 08:08:12 +00:00
namespace urde::MP1
2015-08-27 00:23:46 +00:00
{
const char* kMovies[] =
{
"Video/wingame.thp",
"Video/wingame_best.thp",
"Video/wingame_best.thp",
"Video/losegame.thp",
"Video/05_tallonText.thp",
"Video/AfterCredits.thp",
"Video/SpecialEnding.thp",
"Video/creditBG.thp"
2015-08-27 00:23:46 +00:00
};
bool CPlayMovie::IsResultsScreen(EWhichMovie which)
{
return int(which) <= 2;
}
CPlayMovie::CPlayMovie(EWhichMovie which)
: CPlayMovieBase("CPlayMovie", kMovies[int(which)]), x18_which(which)
{
}
2015-08-27 00:23:46 +00:00
}