mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:07:25 +08:00
22 lines
591 B
C#
22 lines
591 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
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)
|
|
{
|
|
}
|
|
|
|
public override void AdjustPosition(DragEvent dragEvent)
|
|
{
|
|
}
|
|
}
|
|
}
|