1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 22:47:20 +08:00
osu-lazer/osu.Game.Tournament.Tests/Screens/TestSceneStablePathSelectScreen.cs

31 lines
809 B
C#
Raw Normal View History

2020-05-22 19:51:08 +02:00
// 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.
2022-06-17 16:37:17 +09:00
#nullable disable
using osu.Game.Tournament.Screens.Setup;
2020-05-22 19:51:08 +02:00
namespace osu.Game.Tournament.Tests.Screens
{
2022-11-24 14:32:20 +09:00
public partial class TestSceneStablePathSelectScreen : TournamentTestScene
2020-05-22 19:51:08 +02:00
{
public TestSceneStablePathSelectScreen()
2020-05-22 19:51:08 +02:00
{
AddStep("Add screen", () => Add(new StablePathSelectTestScreen()));
2020-05-22 19:51:08 +02:00
}
2022-11-24 14:32:20 +09:00
private partial class StablePathSelectTestScreen : StablePathSelectScreen
2020-05-22 19:51:08 +02:00
{
2020-06-13 15:07:21 +02:00
protected override void ChangePath()
2020-05-22 19:51:08 +02:00
{
Expire();
}
2020-05-22 20:01:26 +02:00
protected override void AutoDetect()
2020-05-22 19:51:08 +02:00
{
Expire();
}
}
}
}