1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 12:22:57 +08:00

Make current state bindable protected

This commit is contained in:
ekrctb 2021-06-08 22:08:54 +09:00
parent 109a366722
commit 194c78f67a

View File

@ -80,7 +80,7 @@ namespace osu.Game.Rulesets.Catch.UI
private readonly Container<CaughtObject> droppedObjectTarget;
[Cached]
public readonly Bindable<CatcherAnimationState> CurrentStateBindable = new Bindable<CatcherAnimationState>();
protected readonly Bindable<CatcherAnimationState> CurrentStateBindable = new Bindable<CatcherAnimationState>();
public CatcherAnimationState CurrentState => CurrentStateBindable.Value;