mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Use expression body for property get/set where possible
This commit is contained in:
@ -66,7 +66,7 @@ namespace osu.Game.Overlays.Toolbar
|
||||
|
||||
public int Count
|
||||
{
|
||||
get { return count; }
|
||||
get => count;
|
||||
set
|
||||
{
|
||||
if (count == value)
|
||||
|
Reference in New Issue
Block a user