Rename Palpable{-> Drawable}CatchHitObject

This commit is contained in:
Bartłomiej Dach
2020-08-20 18:41:08 +02:00
parent 35ff25940b
commit 45e2ea71b4
3 changed files with 4 additions and 4 deletions

View File

@ -15,14 +15,14 @@ using osuTK.Graphics;
namespace osu.Game.Rulesets.Catch.Objects.Drawables
{
public abstract class PalpableCatchHitObject<TObject> : DrawableCatchHitObject<TObject>
public abstract class PalpableDrawableCatchHitObject<TObject> : DrawableCatchHitObject<TObject>
where TObject : CatchHitObject
{
public override bool CanBePlated => true;
protected Container ScaleContainer { get; private set; }
protected PalpableCatchHitObject(TObject hitObject)
protected PalpableDrawableCatchHitObject(TObject hitObject)
: base(hitObject)
{
Origin = Anchor.Centre;