Add missing methods from updated audio component interface implementation

This commit is contained in:
Dean Herbert
2021-02-22 14:18:52 +09:00
parent e2c5dded7f
commit 63dd55c92c
4 changed files with 30 additions and 0 deletions

View File

@ -134,6 +134,10 @@ namespace osu.Game.Rulesets.UI
public IBindable<double> AggregateTempo => throw new NotSupportedException();
public void BindAdjustments(IAggregateAudioAdjustment component) => throw new NotImplementedException();
public void UnbindAdjustments(IAggregateAudioAdjustment component) => throw new NotImplementedException();
public int PlaybackConcurrency
{
get => throw new NotSupportedException();