mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
// 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.
|
|
|
|
using osu.Game.Rulesets.Catch.Edit.Blueprints;
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
using osu.Game.Rulesets.Edit;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Screens.Edit.Compose.Components;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Edit
|
|
{
|
|
public class CatchBlueprintContainer : ComposeBlueprintContainer
|
|
{
|
|
public CatchBlueprintContainer(CatchHitObjectComposer composer)
|
|
: base(composer)
|
|
{
|
|
}
|
|
|
|
protected override SelectionHandler<HitObject> CreateSelectionHandler() => new CatchSelectionHandler();
|
|
|
|
public override HitObjectSelectionBlueprint CreateHitObjectBlueprintFor(HitObject hitObject)
|
|
{
|
|
switch (hitObject)
|
|
{
|
|
case Fruit fruit:
|
|
return new FruitSelectionBlueprint(fruit);
|
|
|
|
case BananaShower bananaShower:
|
|
return new BananaShowerSelectionBlueprint(bananaShower);
|
|
}
|
|
|
|
return base.CreateHitObjectBlueprintFor(hitObject);
|
|
}
|
|
}
|
|
}
|