1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 00:07:25 +08:00
osu-lazer/osu.Game/Overlays/Mods/ModSelectOverlayStatics.cs
2023-06-10 12:38:26 +03:00

21 lines
542 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.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
}
}