mirror of
https://github.com/DrBeef/Raze.git
synced 2024-12-15 15:11:01 +00:00
9 lines
207 B
C
9 lines
207 B
C
|
#pragma once
|
||
|
|
||
|
// Totally minimalistic interface - should be all the game modules need.
|
||
|
|
||
|
void Mus_Play(const char *fn, bool loop);
|
||
|
void Mus_Stop();
|
||
|
void Mus_SetVolume(float vol);
|
||
|
void Mus_SetPaused(bool on);
|