You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
252 B

/**
* @file movie.h
*
* Interface of video playback.
*/
#pragma once
namespace devilution {
extern bool movie_playing;
extern bool loop_movie;
void play_movie(const char *pszMovie, bool user_can_close);
} // namespace devilution