Complete PR's independence

This commit is contained in:
AlFasGD 2018-05-22 09:18:02 +03:00
parent a178c44b60
commit c7dfe88ad2
3 changed files with 17 additions and 4 deletions

View File

@ -14,13 +14,10 @@ namespace osu.Game.Rulesets.Mania.Edit.Layers.Selection.Overlays
public class HoldNoteMask : HitObjectMask
{
private readonly BodyPiece body;
private readonly DrawableHoldNote holdNote;
public HoldNoteMask(DrawableHoldNote hold)
: base(hold)
{
holdNote = hold;
Position = hold.Position;
var holdObject = hold.HitObject;

View File

@ -0,0 +1,16 @@
// 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.Mania.Beatmaps;
using osu.Game.Rulesets.Mania.UI;
namespace osu.Game.Rulesets.Mania.Edit
{
public class ManiaEditStage : ManiaStage
{
public ManiaEditStage(int firstColumnIndex, StageDefinition definition, ref ManiaAction normalColumnStartAction, ref ManiaAction specialColumnStartAction)
: base(firstColumnIndex, definition, ref normalColumnStartAction, ref specialColumnStartAction)
{
}
}
}

View File

@ -8,7 +8,7 @@ using System;
namespace osu.Game.Rulesets.Mania.Objects
{
public abstract class ManiaHitObject : HitObject, IHasColumn, IHasXPosition, IHasEditableColumn
public abstract class ManiaHitObject : HitObject, IHasXPosition, IHasEditableColumn
{
public event Action<int> ColumnChanged;