2019-01-24 08:43:03 +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.
|
2018-11-12 09:24:18 +00:00
|
|
|
|
|
2020-09-09 09:39:55 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Beatmaps;
|
2018-11-12 09:24:18 +00:00
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
|
using osu.Game.Rulesets.Edit.Tools;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Edit.Blueprints;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit
|
|
|
|
|
{
|
2024-09-23 14:33:36 +00:00
|
|
|
|
public class NoteCompositionTool : CompositionTool
|
2018-11-12 09:24:18 +00:00
|
|
|
|
{
|
|
|
|
|
public NoteCompositionTool()
|
|
|
|
|
: base(nameof(Note))
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-09 09:39:55 +00:00
|
|
|
|
public override Drawable CreateIcon() => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Circles);
|
|
|
|
|
|
2024-09-23 14:33:36 +00:00
|
|
|
|
public override HitObjectPlacementBlueprint CreatePlacementBlueprint() => new NotePlacementBlueprint();
|
2018-11-12 09:24:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|