Convert all static getter-only properties to static readonly fields

This commit is contained in:
Salman Ahmed
2020-04-08 14:23:29 +03:00
parent 7f3ad6d5be
commit d27d8671ab
4 changed files with 13 additions and 13 deletions

View File

@ -68,7 +68,7 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawables
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
BorderColour = Catcher.DefaultHyperDashColour,
BorderColour = Catcher.DEFAULT_HYPER_DASH_COLOUR,
BorderThickness = 12f * RADIUS_ADJUST,
Children = new Drawable[]
{
@ -78,7 +78,7 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawables
Alpha = 0.3f,
Blending = BlendingParameters.Additive,
RelativeSizeAxes = Axes.Both,
Colour = Catcher.DefaultHyperDashColour,
Colour = Catcher.DEFAULT_HYPER_DASH_COLOUR,
}
}
});