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.
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
2020-05-13 17:37:14 +08:00
|
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
2020-05-12 17:12:58 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Settings
|
|
|
|
{
|
|
|
|
public class TestSceneDirectorySelector : OsuTestScene
|
|
|
|
{
|
|
|
|
[BackgroundDependencyLoader]
|
2020-09-24 17:18:34 +08:00
|
|
|
private void load()
|
2020-05-12 17:12:58 +08:00
|
|
|
{
|
|
|
|
Add(new DirectorySelector { RelativeSizeAxes = Axes.Both });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|