mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-14 16:40:40 +00:00
d097c8e635
With RMAPINFO such a hack is no longer needed for anything.
22 lines
638 B
C++
22 lines
638 B
C++
#pragma once
|
|
|
|
#include "zstring.h"
|
|
#include "tarray.h"
|
|
#include "name.h"
|
|
|
|
typedef TMap<FName, FName> MusicAliasMap;
|
|
extern MusicAliasMap MusicAliases;
|
|
extern TArray<FString> specialmusic;
|
|
|
|
// Totally minimalistic interface - should be all the game modules need.
|
|
void Mus_InitMusic();
|
|
void Mus_UpdateMusic();
|
|
int Mus_Play(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);
|
|
int LookupMusic(const char* fn, bool onlyextended = false);
|