2019-09-25 05:03:55 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
2020-02-23 12:01:30 +08:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2019-09-25 05:03:55 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Objects
|
|
|
|
|
{
|
|
|
|
|
public class BarLine : ManiaHitObject, IBarLine
|
|
|
|
|
{
|
|
|
|
|
public bool Major { get; set; }
|
2020-02-23 12:01:30 +08:00
|
|
|
|
|
|
|
|
|
public override Judgement CreateJudgement() => new IgnoreJudgement();
|
2019-09-25 05:03:55 +08:00
|
|
|
|
}
|
|
|
|
|
}
|