1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-23 16:27:20 +08:00

internal -> public

This commit is contained in:
smoogipoo 2019-12-23 18:48:14 +09:00
parent 7bb4a08f10
commit d6fd1007c4

View File

@ -32,12 +32,12 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
/// <summary>
/// Time at which the user started holding this hold note. Null if the user is not holding this hold note.
/// </summary>
internal double? HoldStartTime;
public double? HoldStartTime { get; private set; }
/// <summary>
/// Whether the hold note has been released too early and shouldn't give full score for the release.
/// </summary>
internal bool HasBroken;
public bool HasBroken { get; private set; }
public DrawableHoldNote(HoldNote hitObject)
: base(hitObject)