mirror of
https://github.com/ppy/osu.git
synced 2025-01-26 16:12:54 +08:00
Expose HitWindows so they're accessible from the drawable hit objects.
This commit is contained in:
parent
d0ddd62f84
commit
409464381c
@ -31,7 +31,7 @@ namespace osu.Game.Rulesets.Mania.Objects
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The key-release hit windows for this hold note.
|
/// The key-release hit windows for this hold note.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected HitWindows ReleaseHitWindows = new HitWindows();
|
public HitWindows ReleaseHitWindows { get; protected set; } = new HitWindows();
|
||||||
|
|
||||||
public override void ApplyDefaults(TimingInfo timing, BeatmapDifficulty difficulty)
|
public override void ApplyDefaults(TimingInfo timing, BeatmapDifficulty difficulty)
|
||||||
{
|
{
|
||||||
|
@ -15,7 +15,7 @@ namespace osu.Game.Rulesets.Mania.Objects
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The key-press hit window for this note.
|
/// The key-press hit window for this note.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected HitWindows HitWindows = new HitWindows();
|
public HitWindows HitWindows { get; protected set; } = new HitWindows();
|
||||||
|
|
||||||
public override void ApplyDefaults(TimingInfo timing, BeatmapDifficulty difficulty)
|
public override void ApplyDefaults(TimingInfo timing, BeatmapDifficulty difficulty)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user