expand sound:: interface a bit
This commit is contained in:
parent
3708b6b8c9
commit
ea31aa6324
2 changed files with 8 additions and 1 deletions
|
@ -486,6 +486,11 @@ void play_no_music()
|
|||
}
|
||||
}
|
||||
|
||||
void empty_playlist()
|
||||
{
|
||||
current_track_list = std::vector<music_track>();
|
||||
}
|
||||
|
||||
void play_music()
|
||||
{
|
||||
music_start_time = 1; //immediate (same as effect as SDL_GetTicks())
|
||||
|
|
|
@ -48,8 +48,10 @@ void commit_music_changes();
|
|||
void play_music_repeatedly(const std::string &name);
|
||||
// Play this particular music file once, then silence.
|
||||
void play_music_once(const std::string &name);
|
||||
// Empty the playlist.
|
||||
// Empty the playlist (and stop playing)
|
||||
void play_no_music();
|
||||
// Empty the playlist
|
||||
void empty_playlist();
|
||||
// Start playing current music.
|
||||
void play_music();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue