Merge branch 'mania-beatmap-conversion' into mania-distance-object-conversion

This commit is contained in:
smoogipooo 2017-05-18 18:14:11 +09:00
commit 2c97313a20
1 changed files with 6 additions and 0 deletions

View File

@ -9,5 +9,11 @@ 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; }
}
}