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