2018-04-13 17:19:50 +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
|
|
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Edit;
|
2018-11-07 15:08:56 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles.Components;
|
2018-10-03 13:35:26 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
|
|
2018-11-07 15:08:56 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-11-06 16:56:04 +08:00
|
|
|
|
public class HitCircleSelectionBlueprint : SelectionBlueprint
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-11-06 16:56:04 +08:00
|
|
|
|
public HitCircleSelectionBlueprint(DrawableHitCircle hitCircle)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
: base(hitCircle)
|
|
|
|
|
{
|
2018-10-26 12:51:03 +08:00
|
|
|
|
InternalChild = new HitCirclePiece((HitCircle)hitCircle.HitObject);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|