2018-11-07 15:21:32 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
2018-11-12 16:18:58 +08:00
|
|
|
using osu.Framework.Graphics;
|
2018-11-07 15:21:32 +08:00
|
|
|
using osu.Framework.Input.Events;
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Edit.Blueprints
|
|
|
|
{
|
|
|
|
public class ManiaSelectionBlueprint : SelectionBlueprint
|
|
|
|
{
|
|
|
|
public ManiaSelectionBlueprint(DrawableHitObject hitObject)
|
|
|
|
: base(hitObject)
|
|
|
|
{
|
2018-11-12 16:18:58 +08:00
|
|
|
RelativeSizeAxes = Axes.None;
|
2018-11-07 15:21:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void AdjustPosition(DragEvent dragEvent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|