feat: detect steps and play audio

This commit is contained in:
2026-03-04 01:31:35 +01:00
parent 804f83340f
commit e22478445d
18 changed files with 435 additions and 17 deletions

View File

@@ -56,3 +56,7 @@ PlaybackEngine::~PlaybackEngine() {
delete mPlayer;
mPlayer = nullptr;
}
void PlaybackEngine::playBeat() {
if(mPlayer) mPlayer->setStartBeat();
}