mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 09:03:50 +09:00
Don't implement anything
This commit is contained in:
@ -1,9 +1,9 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||||
// See the LICENCE file in the repository root for full licence text.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using osu.Framework.Audio;
|
using osu.Framework.Audio;
|
||||||
using osu.Framework.Audio.Sample;
|
using osu.Framework.Audio.Sample;
|
||||||
@ -29,34 +29,22 @@ namespace osu.Game.Rulesets.UI
|
|||||||
|
|
||||||
public Stream GetStream(string name) => primary.GetStream(name) ?? secondary.GetStream(name);
|
public Stream GetStream(string name) => primary.GetStream(name) ?? secondary.GetStream(name);
|
||||||
|
|
||||||
public IEnumerable<string> GetAvailableResources() => primary.GetAvailableResources().Concat(secondary.GetAvailableResources());
|
public IEnumerable<string> GetAvailableResources() => throw new NotImplementedException();
|
||||||
|
|
||||||
public void AddAdjustment(AdjustableProperty type, BindableDouble adjustBindable)
|
public void AddAdjustment(AdjustableProperty type, BindableDouble adjustBindable) => throw new NotImplementedException();
|
||||||
{
|
|
||||||
primary.AddAdjustment(type, adjustBindable);
|
|
||||||
secondary.AddAdjustment(type, adjustBindable);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void RemoveAdjustment(AdjustableProperty type, BindableDouble adjustBindable)
|
public void RemoveAdjustment(AdjustableProperty type, BindableDouble adjustBindable) => throw new NotImplementedException();
|
||||||
{
|
|
||||||
primary.RemoveAdjustment(type, adjustBindable);
|
|
||||||
secondary.RemoveAdjustment(type, adjustBindable);
|
|
||||||
}
|
|
||||||
|
|
||||||
public BindableDouble Volume => primary.Volume;
|
public BindableDouble Volume => throw new NotImplementedException();
|
||||||
|
|
||||||
public BindableDouble Balance => primary.Balance;
|
public BindableDouble Balance => throw new NotImplementedException();
|
||||||
|
|
||||||
public BindableDouble Frequency => primary.Frequency;
|
public BindableDouble Frequency => throw new NotImplementedException();
|
||||||
|
|
||||||
public int PlaybackConcurrency
|
public int PlaybackConcurrency
|
||||||
{
|
{
|
||||||
get => primary.PlaybackConcurrency;
|
get => throw new NotImplementedException();
|
||||||
set
|
set => throw new NotImplementedException();
|
||||||
{
|
|
||||||
primary.PlaybackConcurrency = value;
|
|
||||||
secondary.PlaybackConcurrency = value;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
|
Reference in New Issue
Block a user