mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
13 lines
279 B
C#
13 lines
279 B
C#
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Edit.Blueprints
|
|
{
|
|
public class DrumRollPlacementBlueprint : TaikoSpanPlacementBlueprint
|
|
{
|
|
public DrumRollPlacementBlueprint()
|
|
: base(new DrumRoll())
|
|
{
|
|
}
|
|
}
|
|
}
|