1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-21 15:43:36 +08:00
This commit is contained in:
DrabWeb 2018-06-01 16:34:03 -03:00
parent a103acbd97
commit 5073057420
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ namespace osu.Game.Screens.Multi.Screens.Match
public BeatmapSetInfo BeatmapSet public BeatmapSetInfo BeatmapSet
{ {
set { cover.BeatmapSet = value; } set => cover.BeatmapSet = value;
} }
public Action OnWantsSelectBeatmap; public Action OnWantsSelectBeatmap;

View File

@ -34,7 +34,7 @@ namespace osu.Game.Screens.Multi.Screens.Match
public int? Max public int? Max
{ {
set { count.Max = value; } set => count.Max = value;
} }
public Participants() public Participants()