2022-11-08 17:24:57 +08:00
|
|
|
// 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.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
|
|
|
|
namespace osu.Game.Configuration
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A settings provider which generally sources from <see cref="OsuConfigManager"/> (global user settings)
|
2022-11-17 06:32:54 +08:00
|
|
|
/// but can allow overriding settings by caching more locally. For instance, in the editor compose screen.
|
2022-11-08 17:24:57 +08:00
|
|
|
/// </summary>
|
|
|
|
/// <remarks>
|
|
|
|
/// More settings can be moved into this interface as required.
|
|
|
|
/// </remarks>
|
|
|
|
[Cached]
|
|
|
|
public interface IGameplaySettings
|
|
|
|
{
|
|
|
|
IBindable<float> ComboColourNormalisationAmount { get; }
|
|
|
|
|
|
|
|
IBindable<float> PositionalHitsoundsLevel { get; }
|
|
|
|
}
|
|
|
|
}
|