1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Edit/SpinnerCompositionTool.cs

21 lines
632 B
C#
Raw Normal View History

2018-10-29 17:35:46 +08:00
// 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;
2018-11-07 15:08:56 +08:00
using osu.Game.Rulesets.Osu.Edit.Blueprints.Spinners;
2018-10-29 17:35:46 +08:00
using osu.Game.Rulesets.Osu.Objects;
namespace osu.Game.Rulesets.Osu.Edit
{
public class SpinnerCompositionTool : HitObjectCompositionTool
{
public SpinnerCompositionTool()
: base(nameof(Spinner))
{
}
2018-11-06 17:06:34 +08:00
public override PlacementBlueprint CreatePlacementBlueprint() => new SpinnerPlacementBlueprint();
2018-10-29 17:35:46 +08:00
}
}