1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 00:27:25 +08:00

Merge pull request #820 from smoogipooo/remove-siblings

Remove Note Siblings.
This commit is contained in:
Dean Herbert 2017-05-22 11:28:25 +09:00 committed by GitHub
commit 05f5e55bc7

View File

@ -9,11 +9,5 @@ namespace osu.Game.Rulesets.Mania.Objects
public abstract class ManiaHitObject : HitObject, IHasColumn
{
public int Column { get; set; }
/// <summary>
/// The number of other <see cref="ManiaHitObject"/> that start at
/// the same time as this hit object.
/// </summary>
public int Siblings { get; set; }
}
}