2018-10-04 12:44:49 +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.Sliders;
|
2018-10-04 12:44:49 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit
|
|
|
|
{
|
|
|
|
public class SliderCompositionTool : HitObjectCompositionTool
|
|
|
|
{
|
|
|
|
public SliderCompositionTool()
|
|
|
|
: base(nameof(Slider))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-11-06 17:06:34 +08:00
|
|
|
public override PlacementBlueprint CreatePlacementBlueprint() => new SliderPlacementBlueprint();
|
2018-10-04 12:44:49 +08:00
|
|
|
}
|
|
|
|
}
|