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
{
set { cover.BeatmapSet = value; }
set => cover.BeatmapSet = value;
}
public Action OnWantsSelectBeatmap;

View File

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