mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 15:07:44 +08:00
31 lines
826 B
C#
31 lines
826 B
C#
|
// 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.Tournament.Screens;
|
||
|
using osu.Framework.Platform;
|
||
|
|
||
|
namespace osu.Game.Tournament.Tests.Screens
|
||
|
{
|
||
|
public class TestSceneStablePathSelectScreens : TournamentTestScene
|
||
|
{
|
||
|
|
||
|
public TestSceneStablePathSelectScreens()
|
||
|
{
|
||
|
AddStep("Add screen", () => Add(new TestSceneStablePathSelectScreen()));
|
||
|
}
|
||
|
|
||
|
private class TestSceneStablePathSelectScreen : StablePathSelectScreen
|
||
|
{
|
||
|
protected override void changePath(Storage storage)
|
||
|
{
|
||
|
Expire();
|
||
|
}
|
||
|
|
||
|
protected override void autoDetect()
|
||
|
{
|
||
|
Expire();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|