mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 14:19:34 +08:00
13 lines
270 B
C#
13 lines
270 B
C#
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Edit.Blueprints
|
|
{
|
|
public class SwellPlacementBlueprint : TaikoSpanPlacementBlueprint
|
|
{
|
|
public SwellPlacementBlueprint()
|
|
: base(new Swell())
|
|
{
|
|
}
|
|
}
|
|
}
|