1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 03:57:25 +08:00
osu-lazer/osu.Game.Tests/Visual/TestCaseMatchSettingsOverlay.cs
2018-12-22 14:48:15 +09:00

23 lines
653 B
C#

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Online.Multiplayer;
using osu.Game.Screens.Multi.Match.Components;
namespace osu.Game.Tests.Visual
{
public class TestCaseMatchSettingsOverlay : OsuTestCase
{
public TestCaseMatchSettingsOverlay()
{
Child = new RoomSettingsOverlay(new Room())
{
RelativeSizeAxes = Axes.Both,
State = Visibility.Visible
};
}
}
}