A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4using osu.Framework.Allocation;
5using osu.Framework.Graphics;
6using osu.Framework.Graphics.UserInterface;
7
8namespace osu.Framework.Tests.Visual.UserInterface
9{
10 public class TestSceneFileSelector : FrameworkTestScene
11 {
12 [BackgroundDependencyLoader]
13 private void load()
14 {
15 Add(new BasicFileSelector { RelativeSizeAxes = Axes.Both });
16 }
17 }
18}