forked from JailDoctor/JailAudio
First commit
This commit is contained in:
14
jail_audio.h
Normal file
14
jail_audio.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
typedef struct JA_Sound_t *JA_Sound;
|
||||
|
||||
void JA_Init();
|
||||
|
||||
void JA_PlayMusic(const char* filename, const bool loop = true);
|
||||
void JA_PauseMusic();
|
||||
void JA_RestartMusic();
|
||||
void JA_StopMusic();
|
||||
|
||||
JA_Sound JA_LoadSound(const char* filename);
|
||||
void JA_PlaySound(JA_Sound sound);
|
||||
void JA_DeleteSound(JA_Sound sound);
|
||||
Reference in New Issue
Block a user