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