2021-02-02 12:14:38 +00: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 NUnit.Framework;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Game.Screens.OnlinePlay;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
|
|
|
{
|
2021-06-25 06:00:10 +00:00
|
|
|
public class TestSceneFreeModSelectOverlay : MultiplayerTestScene
|
2021-02-02 12:14:38 +00:00
|
|
|
{
|
|
|
|
[SetUp]
|
2021-06-25 06:00:10 +00:00
|
|
|
public new void Setup() => Schedule(() =>
|
2021-02-02 12:14:38 +00:00
|
|
|
{
|
2021-06-25 06:00:10 +00:00
|
|
|
Child = new FreeModSelectOverlay
|
2021-02-02 12:14:38 +00:00
|
|
|
{
|
2021-06-25 06:00:10 +00:00
|
|
|
State = { Value = Visibility.Visible }
|
2021-02-02 12:14:38 +00:00
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|