mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Merge branch 'master' into rankings-tables
This commit is contained in:
@ -31,6 +31,12 @@ namespace osu.Game.Users.Drawables
|
||||
set => base.CornerRadius = value;
|
||||
}
|
||||
|
||||
public new float CornerExponent
|
||||
{
|
||||
get => base.CornerExponent;
|
||||
set => base.CornerExponent = value;
|
||||
}
|
||||
|
||||
public new EdgeEffectParameters EdgeEffect
|
||||
{
|
||||
get => base.EdgeEffect;
|
||||
|
@ -129,7 +129,7 @@ namespace osu.Game.Users
|
||||
[JsonProperty]
|
||||
private string[] playstyle
|
||||
{
|
||||
set { PlayStyles = value?.Select(str => Enum.Parse(typeof(PlayStyle), str, true)).Cast<PlayStyle>().ToArray(); }
|
||||
set => PlayStyles = value?.Select(str => Enum.Parse(typeof(PlayStyle), str, true)).Cast<PlayStyle>().ToArray();
|
||||
}
|
||||
|
||||
public PlayStyle[] PlayStyles;
|
||||
|
Reference in New Issue
Block a user