Renamings.

This commit is contained in:
smoogipooo 2017-05-26 16:39:43 +09:00
parent 3f4cbd02cd
commit 871d44d628

View File

@ -75,12 +75,12 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
RelativeCoordinateSpace = new Vector2(1, (float)HitObject.Duration) RelativeCoordinateSpace = new Vector2(1, (float)HitObject.Duration)
}, },
head = new HeadNote(this, key) head = new DrawableHeadNote(this, key)
{ {
Anchor = Anchor.TopCentre, Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre Origin = Anchor.TopCentre
}, },
tail = new TailNote(this, key) tail = new DrawableTailNote(this, key)
{ {
Anchor = Anchor.BottomCentre, Anchor = Anchor.BottomCentre,
Origin = Anchor.TopCentre Origin = Anchor.TopCentre
@ -168,11 +168,11 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
/// <summary> /// <summary>
/// The head note of a hold. /// The head note of a hold.
/// </summary> /// </summary>
private class HeadNote : DrawableNote private class DrawableHeadNote : DrawableNote
{ {
private readonly DrawableHoldNote holdNote; private readonly DrawableHoldNote holdNote;
public HeadNote(DrawableHoldNote holdNote, Bindable<Key> key = null) public DrawableHeadNote(DrawableHoldNote holdNote, Bindable<Key> key = null)
: base(holdNote.HitObject.Head, key) : base(holdNote.HitObject.Head, key)
{ {
this.holdNote = holdNote; this.holdNote = holdNote;
@ -205,11 +205,11 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
/// <summary> /// <summary>
/// The tail note of a hold. /// The tail note of a hold.
/// </summary> /// </summary>
private class TailNote : DrawableNote private class DrawableTailNote : DrawableNote
{ {
private readonly DrawableHoldNote holdNote; private readonly DrawableHoldNote holdNote;
public TailNote(DrawableHoldNote holdNote, Bindable<Key> key = null) public DrawableTailNote(DrawableHoldNote holdNote, Bindable<Key> key = null)
: base(holdNote.HitObject.Tail, key) : base(holdNote.HitObject.Tail, key)
{ {
this.holdNote = holdNote; this.holdNote = holdNote;