mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Fix remaining incorrect filename
This commit is contained in:
@ -1,19 +0,0 @@
|
||||
// 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.
|
||||
|
||||
using osu.Game.Rulesets.Objects;
|
||||
using osu.Game.Rulesets.Scoring;
|
||||
|
||||
namespace osu.Game.Tests.NonVisual
|
||||
{
|
||||
public class TestHitObject : HitObject
|
||||
{
|
||||
public TestHitObject(HitWindows hitWindows)
|
||||
{
|
||||
HitWindows = hitWindows;
|
||||
HitWindows.SetDifficulty(0.5f);
|
||||
}
|
||||
|
||||
public new void AddNested(HitObject nested) => base.AddNested(nested);
|
||||
}
|
||||
}
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user