Skip to content

Commit

Permalink
Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Apr 12, 2024
1 parent d1434eb commit 63e574f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions osu.Game.Rulesets.Sentakki.Tests/UI/TestSceneResumeOverlay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;
using osu.Game.Rulesets.Sentakki.UI;
using osu.Game.Rulesets.UI;
using osu.Game.Screens.Play;
using osu.Game.Tests.Visual;

Expand All @@ -13,12 +14,12 @@ public partial class TestSceneResumeOverlay : OsuTestScene

public TestSceneResumeOverlay()
{
CursorContainer cursor;
GameplayCursorContainer cursor;
ResumeOverlay resume;

Children = new Drawable[]
{
cursor = new CursorContainer(),
cursor = new GameplayCursorContainer(),
resume = new SentakkiResumeOverlay
{
GameplayCursor = cursor
Expand Down

0 comments on commit 63e574f

Please sign in to comment.