add ability to move sub-songs

This commit is contained in:
tildearrow 2022-06-01 18:50:30 -05:00
parent 2da92b0433
commit ddcd76328d
4 changed files with 77 additions and 19 deletions

View file

@ -825,6 +825,10 @@ class DivEngine {
// remove subsong
bool removeSubSong(int index);
// move subsong
void moveSubSongUp(size_t index);
void moveSubSongDown(size_t index);
// clear all subsong data
void clearSubSongs();