2021-06-22 11:30:09 +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.
|
|
|
|
|
2021-06-23 08:34:11 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Beatmaps;
|
2021-06-22 11:30:09 +08:00
|
|
|
using osu.Game.Rulesets.Catch.Edit.Blueprints;
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
using osu.Game.Rulesets.Edit.Tools;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Edit
|
|
|
|
{
|
|
|
|
public class BananaShowerCompositionTool : HitObjectCompositionTool
|
|
|
|
{
|
|
|
|
public BananaShowerCompositionTool()
|
|
|
|
: base(nameof(BananaShower))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-06-23 08:34:11 +08:00
|
|
|
public override Drawable CreateIcon() => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Spinners);
|
|
|
|
|
2021-06-22 11:30:09 +08:00
|
|
|
public override PlacementBlueprint CreatePlacementBlueprint() => new BananaShowerPlacementBlueprint();
|
|
|
|
}
|
|
|
|
}
|