1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 09:47:52 +08:00
osu-lazer/osu.Game.Tests/Visual/Collections/TestSceneCollectionDialog.cs
2020-09-07 21:08:48 +09:00

27 lines
758 B
C#

// 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;
using osu.Framework.Graphics.Containers;
using osu.Game.Collections;
using osu.Game.Overlays;
namespace osu.Game.Tests.Visual.Collections
{
public class TestSceneCollectionDialog : OsuTestScene
{
[Cached]
private DialogOverlay dialogOverlay;
public TestSceneCollectionDialog()
{
Children = new Drawable[]
{
new ManageCollectionsDialog { State = { Value = Visibility.Visible } },
dialogOverlay = new DialogOverlay()
};
}
}
}