2020-05-12 17:12:58 +08: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 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-05-12 17:12:58 +08:00
|
|
|
using osu.Framework.Graphics;
|
2020-05-13 17:37:14 +08:00
|
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
2022-07-12 01:18:50 +08:00
|
|
|
using osu.Game.Tests.Visual.UserInterface;
|
2020-05-12 17:12:58 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Settings
|
|
|
|
{
|
2022-07-12 01:18:50 +08:00
|
|
|
public class TestSceneDirectorySelector : ThemeComparisonTestScene
|
2020-05-12 17:12:58 +08:00
|
|
|
{
|
2022-07-12 01:18:50 +08:00
|
|
|
protected override Drawable CreateContent() => new OsuDirectorySelector
|
2020-05-12 17:12:58 +08:00
|
|
|
{
|
2022-07-12 01:18:50 +08:00
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
};
|
2020-05-12 17:12:58 +08:00
|
|
|
}
|
|
|
|
}
|