Made StackedEndPosition virtual

Done to allow overriding in the other object classes.
This commit is contained in:
Roxie is Flux3on 2021-10-24 18:14:37 -07:00
parent 386910ca2e
commit 861cd4852a

View File

@ -49,7 +49,7 @@ namespace osu.Game.Rulesets.Osu.Objects
public virtual Vector2 EndPosition => Position;
public Vector2 StackedEndPosition => EndPosition + StackOffset;
public virtual Vector2 StackedEndPosition => EndPosition + StackOffset;
public readonly Bindable<int> StackHeightBindable = new Bindable<int>();