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-05-20 10:22:42 +00:00
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-11-12 08:59:39 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Edit.Blueprints.Components;
|
2021-05-13 10:53:32 +00:00
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
2018-05-20 10:22:42 +00:00
|
|
|
|
|
2018-11-07 07:08:56 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit.Blueprints
|
2018-05-20 10:22:42 +00:00
|
|
|
|
{
|
2021-05-13 10:53:32 +00:00
|
|
|
|
public class NoteSelectionBlueprint : ManiaSelectionBlueprint<Note>
|
2018-05-20 10:22:42 +00:00
|
|
|
|
{
|
2021-05-13 10:53:32 +00:00
|
|
|
|
public NoteSelectionBlueprint(Note note)
|
2018-05-20 10:22:42 +00:00
|
|
|
|
: base(note)
|
|
|
|
|
{
|
2018-11-12 08:59:39 +00:00
|
|
|
|
AddInternal(new EditNotePiece { RelativeSizeAxes = Axes.X });
|
2018-05-20 10:22:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|