2019-01-24 16:43:03 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-11-07 15:21:32 +08:00
|
|
|
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2021-05-13 18:53:32 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
2018-11-07 15:21:32 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints
|
|
|
|
{
|
2021-05-13 18:53:32 +08:00
|
|
|
public abstract class OsuSelectionBlueprint<T> : HitObjectSelectionBlueprint<T>
|
2019-09-27 17:45:22 +08:00
|
|
|
where T : OsuHitObject
|
2018-11-07 15:21:32 +08:00
|
|
|
{
|
2021-05-13 18:53:32 +08:00
|
|
|
protected new DrawableOsuHitObject DrawableObject => (DrawableOsuHitObject)base.DrawableObject;
|
2018-11-07 15:21:32 +08:00
|
|
|
|
2020-05-27 12:40:16 +08:00
|
|
|
protected override bool AlwaysShowWhenSelected => true;
|
|
|
|
|
2021-05-13 18:53:32 +08:00
|
|
|
protected OsuSelectionBlueprint(T hitObject)
|
|
|
|
: base(hitObject)
|
2018-11-07 15:21:32 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|