1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-01 23:23:20 +08:00

Use properties instead of fields

This commit is contained in:
Dan Balasescu 2024-11-19 18:48:30 +09:00
parent db7def9d34
commit a5327aa562
No known key found for this signature in database

View File

@ -19,12 +19,12 @@ namespace osu.Game.Beatmaps.Drawables
/// <summary> /// <summary>
/// Delay before the background is loaded while on-screen. /// Delay before the background is loaded while on-screen.
/// </summary> /// </summary>
public double BackgroundLoadDelay = 500; public double BackgroundLoadDelay { get; set; } = 500;
/// <summary> /// <summary>
/// Delay before the background is unloaded while off-screen. /// Delay before the background is unloaded while off-screen.
/// </summary> /// </summary>
public double BackgroundUnloadDelay = 10000; public double BackgroundUnloadDelay { get; set; } = 10000;
[Resolved] [Resolved]
private BeatmapManager beatmaps { get; set; } = null!; private BeatmapManager beatmaps { get; set; } = null!;