2019-01-24 08:43:03 +00: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.
|
2018-10-29 09:35:46 +00:00
|
|
|
|
2020-09-09 09:35:25 +00:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Beatmaps;
|
2018-10-29 09:35:46 +00:00
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
using osu.Game.Rulesets.Edit.Tools;
|
2018-11-07 07:08:56 +00:00
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.Spinners;
|
2018-10-29 09:35:46 +00:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit
|
|
|
|
{
|
|
|
|
public class SpinnerCompositionTool : HitObjectCompositionTool
|
|
|
|
{
|
|
|
|
public SpinnerCompositionTool()
|
|
|
|
: base(nameof(Spinner))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-09-09 09:35:25 +00:00
|
|
|
public override Drawable CreateIcon() => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Spinners);
|
|
|
|
|
2018-11-06 09:06:34 +00:00
|
|
|
public override PlacementBlueprint CreatePlacementBlueprint() => new SpinnerPlacementBlueprint();
|
2018-10-29 09:35:46 +00:00
|
|
|
}
|
|
|
|
}
|