1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 20:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Edit/Blueprints/NoteSelectionBlueprint.cs

26 lines
733 B
C#
Raw Normal View History

// 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 18:22:42 +08:00
using osu.Framework.Graphics;
using osu.Game.Rulesets.Mania.Edit.Blueprints.Components;
2018-05-20 18:22:42 +08:00
using osu.Game.Rulesets.Mania.Objects.Drawables;
2018-11-07 15:08:56 +08:00
namespace osu.Game.Rulesets.Mania.Edit.Blueprints
2018-05-20 18:22:42 +08:00
{
public class NoteSelectionBlueprint : ManiaSelectionBlueprint
2018-05-20 18:22:42 +08:00
{
2018-11-06 16:56:04 +08:00
public NoteSelectionBlueprint(DrawableNote note)
2018-05-20 18:22:42 +08:00
: base(note)
{
AddInternal(new EditNotePiece { RelativeSizeAxes = Axes.X });
2018-05-20 18:22:42 +08:00
}
2018-06-07 17:28:49 +08:00
protected override void Update()
{
base.Update();
Size = DrawableObject.DrawSize;
2018-06-07 17:28:49 +08:00
}
2018-05-20 18:22:42 +08:00
}
}