Files
osu-framework/osu.Framework/Audio/IAdjustableResourceStore.cs
2022-11-16 19:12:44 +09:00

13 lines
357 B
C#

// 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.
using osu.Framework.IO.Stores;
namespace osu.Framework.Audio
{
public interface IAdjustableResourceStore<T> : IResourceStore<T>, IAdjustableAudioComponent
where T : AudioComponent
{
}
}