Fix remaining incorrect filename

This commit is contained in:
Dean Herbert
2021-07-05 18:56:59 +09:00
parent bf4be2dfc7
commit cd2916f778
2 changed files with 11 additions and 19 deletions

View File

@ -108,5 +108,16 @@ namespace osu.Game.Tests.NonVisual
public override void CancelResume() => throw new NotImplementedException();
}
public class TestHitObject : HitObject
{
public TestHitObject(HitWindows hitWindows)
{
HitWindows = hitWindows;
HitWindows.SetDifficulty(0.5f);
}
public new void AddNested(HitObject nested) => base.AddNested(nested);
}
}
}