1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 16:27:26 +08:00

Readonly variable

This commit is contained in:
Dean Herbert 2019-01-25 11:50:52 +09:00
parent 6b3d53750c
commit bda5a90252

View File

@ -74,7 +74,7 @@ namespace osu.Game.Beatmaps
private readonly AudioManager audioManager;
private GameHost host;
private readonly GameHost host;
private readonly List<DownloadBeatmapSetRequest> currentDownloads = new List<DownloadBeatmapSetRequest>();
@ -85,7 +85,7 @@ namespace osu.Game.Beatmaps
this.rulesets = rulesets;
this.api = api;
this.audioManager = audioManager;
this.host = importHost;
host = importHost;
DefaultBeatmap = defaultBeatmap;