mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 15:21:48 +00:00
22ccea8677
Conmsidering how hard it is in Duke Nukem based games to modify the level music, there is now a setting for this in mussetting.txt to make the job easier and even allow setting level music in Redneck Rampage without replacing game data.
8 lines
213 B
C
8 lines
213 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_SetPaused(bool on);
|