mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
347ed51036
* moved Smacker video playing code into the backend, so now all games can play all supported video formats * logos and level intro/exit videos use ScreenJob
20 lines
562 B
C++
20 lines
562 B
C++
#pragma once
|
|
|
|
#include "zstring.h"
|
|
#include "tarray.h"
|
|
#include "name.h"
|
|
|
|
typedef TMap<FName, FName> MusicAliasMap;
|
|
extern MusicAliasMap MusicAliases;
|
|
|
|
// Totally minimalistic interface - should be all the game modules need.
|
|
void Mus_InitMusic();
|
|
void Mus_UpdateMusic();
|
|
int Mus_Play(const char *mapname, const char *fn, bool loop);
|
|
void Mus_Stop();
|
|
bool Mus_IsPlaying();
|
|
void Mus_SetPaused(bool on);
|
|
void Mus_ResumeSaved();
|
|
FString G_SetupFilenameBasedMusic(const char* fileName, const char *defaultfn);
|
|
class FSerializer;
|
|
void Mus_Serialize(FSerializer& arc);
|