mirror of
https://github.com/thug1src/thug.git
synced 2025-01-22 05:43:47 +00:00
44 lines
1.2 KiB
C
44 lines
1.2 KiB
C
|
/*****************************************************************************
|
||
|
** **
|
||
|
** Neversoft Entertainment **
|
||
|
** **
|
||
|
** Copyright (C) 1999 - All Rights Reserved **
|
||
|
** **
|
||
|
******************************************************************************
|
||
|
** **
|
||
|
** Project: GEL (Game Engine Library) **
|
||
|
** **
|
||
|
** Module: Movies **
|
||
|
** **
|
||
|
** File name: gel/movies/ngc/p_movies.h **
|
||
|
** **
|
||
|
** Created: 8/27/01 - dc **
|
||
|
** **
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#ifndef __P_MOVIES_H
|
||
|
#define __P_MOVIES_H
|
||
|
|
||
|
/*****************************************************************************
|
||
|
** Includes **
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#include <core/defines.h>
|
||
|
#include <core/singleton.h>
|
||
|
#include <core/list.h>
|
||
|
#include <core/macros.h>
|
||
|
|
||
|
namespace Flx
|
||
|
{
|
||
|
|
||
|
void PMovies_PlayMovie( const char *pName );
|
||
|
|
||
|
bool Movie_Render( void );
|
||
|
|
||
|
} // namespace Flx
|
||
|
|
||
|
#endif // __P_MOVIES_H
|
||
|
|
||
|
|
||
|
|