thug/Code/Gel/Movies/Movies.cpp

58 lines
1.6 KiB
C++
Raw Normal View History

2016-02-13 21:39:12 +00:00
/*****************************************************************************
** **
** Neversoft Entertainment **
** **
** Copyright (C) 1999 - All Rights Reserved **
** **
******************************************************************************
** **
** Project: GEL (Game Engine Library) **
** **
** Module: GEL **
** **
** File name: movies.cpp **
** **
** Created: 5/14/1 - mjd **
** **
** Description: streaming movies **
** **
*****************************************************************************/
/*****************************************************************************
** Includes **
*****************************************************************************/
#include <core/defines.h>
#include <core/macros.h>
#include <core/singleton.h>
#ifdef __PLAT_NGPS__
#include <gel/movies/ngps/p_movies.h>
#elif defined( __PLAT_XBOX__ )
#include <gel/movies/xbox/p_movies.h>
#elif defined( __PLAT_NGC__ )
#include <gel/movies/ngc/p_movies.h>
#endif
#include <sys/profiler.h>
/*****************************************************************************
** DBG Information **
*****************************************************************************/
namespace Flx
{
void PlayMovie( const char *pMovieName )
{
PMovies_PlayMovie( pMovieName );
}
} // namespace Flx