2019-01-24 17:43:03 +09: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 13:22:42 +03:00
|
|
|
|
|
2018-11-12 17:59:39 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Rulesets.Mania.Edit.Blueprints.Components;
|
2021-05-13 19:53:32 +09:00
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
2018-05-20 13:22:42 +03:00
|
|
|
|
|
2018-11-07 16:08:56 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit.Blueprints
|
2018-05-20 13:22:42 +03:00
|
|
|
|
{
|
2021-05-13 19:53:32 +09:00
|
|
|
|
public partial class NoteSelectionBlueprint : ManiaSelectionBlueprint<Note>
|
2018-05-20 13:22:42 +03:00
|
|
|
|
{
|
2021-05-13 19:53:32 +09:00
|
|
|
|
public NoteSelectionBlueprint(Note note)
|
2018-05-20 13:22:42 +03:00
|
|
|
|
: base(note)
|
|
|
|
|
{
|
2018-11-12 17:59:39 +09:00
|
|
|
|
AddInternal(new EditNotePiece { RelativeSizeAxes = Axes.X });
|
2018-05-20 13:22:42 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|