Rename Barline -> BarLine.

This commit is contained in:
smoogipooo
2017-05-29 15:01:13 +09:00
parent ee7158aa95
commit 4fce0c1189
5 changed files with 8 additions and 8 deletions

View File

@ -0,0 +1,19 @@
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Rulesets.Objects;
namespace osu.Game.Rulesets.Mania.Objects
{
public class BarLine : ManiaHitObject
{
/// <summary>
/// The control point which this bar line is part of.
/// </summary>
public TimingControlPoint ControlPoint;
/// <summary>
/// The index of the beat which this bar line represents within the control point.
/// This is a "major" beat at <see cref="BeatIndex"/> % <see cref="TimingControlPoint.TimeSignature"/> == 0.
/// </summary>
public int BeatIndex;
}
}