mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
fa7638c446
* reverb/echo is not yet implemented, so there's two stub functions for now. * RTS needs to be done differently, because the sound engine cannot play raw buffers without any control data.
7 lines
168 B
C
7 lines
168 B
C
#pragma once
|
|
|
|
void RTS_Init(const char *filename);
|
|
bool RTS_IsInitialized();
|
|
int RTS_SoundLength(int lump);
|
|
void *RTS_GetSound(int lump);
|
|
int RTS_GetSoundID(int lump);
|