Removed binary files

This commit is contained in:
n00b
2024-09-28 11:56:07 -04:00
parent 1bf67ba02c
commit 44a2793f37
53 changed files with 3222 additions and 1582 deletions

View File

@@ -1,4 +1,4 @@
function SoundFromBuffer(byref buffer, buffer_size, vol)
function CreateSound(byref buffer, buffer_size, vol)
function LoadSound(snd_file$)
sub LoadMusic(music_file$)
sub PlaySound(slot, channel, loops)
@@ -14,18 +14,18 @@ sub FadeMusicIn(fade_time, loops)
sub FadeMusicOut(fade_time)
function MusicExists()
sub SetMusicVolume(vol)
function MusicVolume()
function GetMusicVolume()
sub SetMusicPosition(pos)
function MusicPosition()
function GetMusicPosition()
sub RewindMusic()
sub SetSoundChannels(max_channels)
function NumSoundChannels()
function SoundIsEnabled()
function SoundExists(slot)
sub SetChannelVolume(channel, vol)
function ChannelVolume(channel)
function GetChannelVolume(channel)
sub SetSoundVolume(slot, vol)
function SoundVolume(slot)
function GetSoundVolume(slot)
sub StopMusic()
sub StopSound(channel)
function SetChannelPanning(channel, left_value, right_value)