mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 03:17:45 +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())
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|