mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 05:21:12 +00:00
10 lines
268 B
C
10 lines
268 B
C
#pragma once
|
|
|
|
// Totally minimalistic interface - should be all the game modules need.
|
|
|
|
void Mus_Init();
|
|
int Mus_Play(const char *mapname, const char *fn, bool loop);
|
|
void Mus_Stop();
|
|
void Mus_Fade(double seconds);
|
|
void Mus_SetPaused(bool on);
|
|
void MUS_ResumeSaved();
|