2
3
4
5
6
7
10#include <SDL2/SDL_mixer.h>
11#include <pu/pu_Include.hpp>
16
17
18 using Music = Mix_Music*;
21
22
23
24
25
26
30
31
32
33
34
38
39
40
41
42
43
47
48
49
53
54
58
59
63
64
65
66
70
71
72
73
77
78
79
80
84
85
86
90
91
92
96
97
98
99
103
104
105
i32 GetMusicVolume()
Gets the volume of the currently playing music.
bool IsPlayingMusic()
Checks if music is currently playing.
void FadeOutMusic(i32 ms)
Fades out the currently playing music.
void PlayMusicWithFadeIn(Music mus, i32 loops, i32 ms)
Plays a music file with a fade-in effect.
void PauseMusic()
Pauses the currently playing music.
void DestroyMusic(Music &mus)
Destroys a music file.
void ResumeMusic()
Resumes the currently paused music.
void RewindMusic()
Rewinds the currently playing music.
Music OpenMusic(std::string &path)
Opens a music file from the specified path.
void SetMusicVolume(i32 vol)
Sets the volume of the currently playing music.
void SetMusicPosition(double sec)
Sets the position of the currently playing music.
void PlayMusic(Music mus, i32 loops)
Plays a music file.
void StopMusic()
Stops the currently playing music.
Definition audio_Audio.hpp:13