1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 23:12:55 +08:00

Add missing function to MusicController

This commit is contained in:
Lucas A 2019-07-05 16:28:37 +02:00
parent c9e44e5e34
commit 5cad2b2192

View File

@ -559,5 +559,10 @@ namespace osu.Game.Overlays
play();
return true;
}
/// <summary>
/// Returns whether the current beatmap track is playing.
/// </summary>
public bool IsPlaying => beatmap.Value.Track.IsRunning;
}
}