1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 10:33:30 +08:00

Add mod select overlay statics

This commit is contained in:
Cootz 2023-06-10 12:38:26 +03:00
parent 659a042065
commit 9224486ec7
2 changed files with 22 additions and 0 deletions

View File

@ -103,6 +103,8 @@ namespace osu.Game.Overlays.Mods
private readonly BindableBool customisationVisible = new BindableBool();
protected readonly ModSelectOverlayStatics statics = new ModSelectOverlayStatics();
private ModSettingsArea modSettingsArea = null!;
private ColumnScrollContainer columnScroll = null!;
private ColumnFlowContainer columnFlow = null!;

View File

@ -0,0 +1,20 @@
// 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.Game.Configuration;
namespace osu.Game.Overlays.Mods
{
public class ModSelectOverlayStatics : InMemoryConfigManager<Static>
{
protected override void InitialiseDefaults()
{
SetDefault(Static.LastModSelectPanelSoundPlaybackTime, (double?)null);
}
}
public enum Static
{
LastModSelectPanelSoundPlaybackTime
}
}