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-09-09 17:39:55 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Beatmaps;
|
2020-05-29 15:40:10 +08:00
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
using osu.Game.Rulesets.Edit.Tools;
|
|
|
|
using osu.Game.Rulesets.Taiko.Edit.Blueprints;
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Edit
|
|
|
|
{
|
|
|
|
public class SwellCompositionTool : HitObjectCompositionTool
|
|
|
|
{
|
|
|
|
public SwellCompositionTool()
|
|
|
|
: base(nameof(Swell))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-09-09 17:39:55 +08:00
|
|
|
public override Drawable CreateIcon() => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Spinners);
|
|
|
|
|
2020-05-29 15:40:10 +08:00
|
|
|
public override PlacementBlueprint CreatePlacementBlueprint() => new SwellPlacementBlueprint();
|
|
|
|
}
|
|
|
|
}
|