2020-05-29 17:58:34 +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.
|
|
|
|
|
2020-05-29 15:40:10 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2020-05-30 14:24:37 +08:00
|
|
|
using osu.Game.Rulesets.Taiko.Edit.Blueprints;
|
2020-05-29 15:40:10 +08:00
|
|
|
using osu.Game.Screens.Edit.Compose.Components;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Edit
|
|
|
|
{
|
|
|
|
public class TaikoBlueprintContainer : ComposeBlueprintContainer
|
|
|
|
{
|
|
|
|
public TaikoBlueprintContainer(IEnumerable<DrawableHitObject> hitObjects)
|
|
|
|
: base(hitObjects)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override SelectionHandler CreateSelectionHandler() => new TaikoSelectionHandler();
|
|
|
|
|
|
|
|
public override OverlaySelectionBlueprint CreateBlueprintFor(DrawableHitObject hitObject) =>
|
|
|
|
new TaikoSelectionBlueprint(hitObject);
|
|
|
|
}
|
|
|
|
}
|