mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Use expression body for property get/set where possible
This commit is contained in:
@ -30,8 +30,8 @@ namespace osu.Game.Overlays.BeatmapSet.Buttons
|
||||
|
||||
public BeatmapSetInfo BeatmapSet
|
||||
{
|
||||
get { return playButton.BeatmapSet; }
|
||||
set { playButton.BeatmapSet = value; }
|
||||
get => playButton.BeatmapSet;
|
||||
set => playButton.BeatmapSet = value;
|
||||
}
|
||||
|
||||
public PreviewButton()
|
||||
|
Reference in New Issue
Block a user