1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:47:28 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/Edit/TaikoBlueprintContainer.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
830 B
C#
Raw Normal View History

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 osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Objects;
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 partial class TaikoBlueprintContainer : ComposeBlueprintContainer
{
public TaikoBlueprintContainer(HitObjectComposer composer)
: base(composer)
2020-05-29 15:40:10 +08:00
{
}
protected override SelectionHandler<HitObject> CreateSelectionHandler() => new TaikoSelectionHandler();
2020-05-29 15:40:10 +08:00
public override HitObjectSelectionBlueprint CreateHitObjectBlueprintFor(HitObject hitObject) =>
2020-05-29 15:40:10 +08:00
new TaikoSelectionBlueprint(hitObject);
}
}