osu/osu.Game.Rulesets.Taiko/Edit/Blueprints/SwellPlacementBlueprint.cs

16 lines
420 B
C#
Raw Normal View History

2020-05-29 09:58:34 +00:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2020-05-29 07:40:10 +00:00
using osu.Game.Rulesets.Taiko.Objects;
namespace osu.Game.Rulesets.Taiko.Edit.Blueprints
{
public class SwellPlacementBlueprint : TaikoSpanPlacementBlueprint
{
public SwellPlacementBlueprint()
: base(new Swell())
{
}
}
}