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

18 lines
546 B
C#
Raw Normal View History

2023-06-23 01:37:25 +09:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2020-05-12 18:12:58 +09:00
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
2020-05-13 18:37:14 +09:00
using osu.Game.Graphics.UserInterfaceV2;
using osu.Game.Tests.Visual.UserInterface;
2020-05-12 18:12:58 +09:00
namespace osu.Game.Tests.Visual.Settings
{
2022-11-24 14:32:20 +09:00
public partial class TestSceneDirectorySelector : ThemeComparisonTestScene
2020-05-12 18:12:58 +09:00
{
protected override Drawable CreateContent() => new OsuDirectorySelector
2020-05-12 18:12:58 +09:00
{
RelativeSizeAxes = Axes.Both
};
2020-05-12 18:12:58 +09:00
}
}