2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-02 17:27:38 +08:00
|
|
|
|
|
2017-05-03 11:53:45 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Objects.Types;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2016-11-14 17:54:24 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.Objects
|
2016-09-02 17:27:38 +08:00
|
|
|
|
{
|
2017-05-03 11:44:19 +08:00
|
|
|
|
public abstract class ManiaHitObject : HitObject, IHasColumn
|
2016-09-02 17:27:38 +08:00
|
|
|
|
{
|
2017-05-03 11:44:19 +08:00
|
|
|
|
public int Column { get; set; }
|
2017-05-18 17:13:08 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The number of other <see cref="ManiaHitObject"/> that start at
|
|
|
|
|
/// the same time as this hit object.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Siblings { get; set; }
|
2016-09-02 17:27:38 +08:00
|
|
|
|
}
|
|
|
|
|
}
|