mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:47:52 +08:00
21 lines
632 B
C#
21 lines
632 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
using osu.Game.Rulesets.Edit.Tools;
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.Spinners;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit
|
|
{
|
|
public class SpinnerCompositionTool : HitObjectCompositionTool
|
|
{
|
|
public SpinnerCompositionTool()
|
|
: base(nameof(Spinner))
|
|
{
|
|
}
|
|
|
|
public override PlacementBlueprint CreatePlacementBlueprint() => new SpinnerPlacementBlueprint();
|
|
}
|
|
}
|