mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
18 lines
470 B
C#
18 lines
470 B
C#
using osu.Game.Rulesets.Edit;
|
|
using osu.Game.Rulesets.Edit.Tools;
|
|
using osu.Game.Rulesets.Taiko.Edit.Blueprints;
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Edit
|
|
{
|
|
public class SwellCompositionTool : HitObjectCompositionTool
|
|
{
|
|
public SwellCompositionTool()
|
|
: base(nameof(Swell))
|
|
{
|
|
}
|
|
|
|
public override PlacementBlueprint CreatePlacementBlueprint() => new SwellPlacementBlueprint();
|
|
}
|
|
}
|