mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 06:19:38 +08:00
21 lines
642 B
C#
21 lines
642 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.HitCircles;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit
|
|
{
|
|
public class HitCircleCompositionTool : HitObjectCompositionTool
|
|
{
|
|
public HitCircleCompositionTool()
|
|
: base(nameof(HitCircle))
|
|
{
|
|
}
|
|
|
|
public override PlacementBlueprint CreatePlacementBlueprint() => new HitCirclePlacementBlueprint();
|
|
}
|
|
}
|