1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:07:25 +08:00
osu-lazer/osu.Game.Tests/Visual/Settings/TestSceneDirectorySelector.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
550 B
C#
Raw Normal View History

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.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]
private void load()
2020-05-12 17:12:58 +08:00
{
Add(new OsuDirectorySelector { RelativeSizeAxes = Axes.Both });
2020-05-12 17:12:58 +08:00
}
}
}