1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 05:43:21 +08:00

Convert to method group

This commit is contained in:
Andrei Zavatski 2019-08-12 10:38:34 +03:00
parent cb910a6518
commit 982066dfdf

View File

@ -48,7 +48,7 @@ namespace osu.Game.Screens.Multi.Match.Components
request.Success += beatmap =>
{
panel = new DirectGridPanel(beatmap.ToBeatmapSet(rulesets));
LoadComponentAsync(panel, p => { AddInternal(p); });
LoadComponentAsync(panel, AddInternal);
};
api.Queue(request);
}