mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Merge branch 'master' into more-inspections
This commit is contained in:
@ -318,7 +318,7 @@ namespace osu.Game.Overlays.Profile
|
||||
|
||||
public User User
|
||||
{
|
||||
get { return user; }
|
||||
get => user;
|
||||
set
|
||||
{
|
||||
user = value;
|
||||
|
@ -78,7 +78,7 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
|
||||
|
||||
public new int Count
|
||||
{
|
||||
set { valueText.Text = value.ToString(); }
|
||||
set => valueText.Text = value.ToString();
|
||||
}
|
||||
|
||||
public CountSection(string header, string description)
|
||||
|
Reference in New Issue
Block a user