// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Beatmaps.ControlPoints; namespace osu.Game.Rulesets.Mania.Objects { public class BarLine : ManiaHitObject { /// /// The control point which this bar line is part of. /// public TimingControlPoint ControlPoint; /// /// The index of the beat which this bar line represents within the control point. /// This is a "major" bar line if % == 0. /// public int BeatIndex; } }