1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 03:17:45 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/Edit/Blueprints/SwellPlacementBlueprint.cs

13 lines
270 B
C#
Raw Normal View History

2020-05-29 15:40:10 +08:00
using osu.Game.Rulesets.Taiko.Objects;
namespace osu.Game.Rulesets.Taiko.Edit.Blueprints
{
public class SwellPlacementBlueprint : TaikoSpanPlacementBlueprint
{
public SwellPlacementBlueprint()
: base(new Swell())
{
}
}
}