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

Make CatchHitObjectPiece abstract class

This commit is contained in:
ekrctb 2020-12-08 17:02:57 +09:00
parent 17d48c82f6
commit 603cecb2eb

View File

@ -12,7 +12,7 @@ using osuTK.Graphics;
namespace osu.Game.Rulesets.Catch.Skinning.Default namespace osu.Game.Rulesets.Catch.Skinning.Default
{ {
public class CatchHitObjectPiece : CompositeDrawable public abstract class CatchHitObjectPiece : CompositeDrawable
{ {
public readonly Bindable<Color4> AccentColour = new Bindable<Color4>(); public readonly Bindable<Color4> AccentColour = new Bindable<Color4>();
public readonly Bindable<bool> HyperDash = new Bindable<bool>(); public readonly Bindable<bool> HyperDash = new Bindable<bool>();