1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:57:36 +08:00

Use private access modifier for Border field.

This commit is contained in:
ekrctb 2020-11-30 13:06:04 +09:00
parent 09b7ba41d6
commit 5e0e4e9db7

View File

@ -18,7 +18,7 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawables.Pieces
public readonly Bindable<FruitVisualRepresentation> VisualRepresentation = new Bindable<FruitVisualRepresentation>();
public readonly Bindable<bool> HyperDash = new Bindable<bool>();
public BorderPiece Border;
public BorderPiece Border { get; private set; }
public FruitPiece()
{