mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 05:02:55 +08:00
30 lines
830 B
C#
30 lines
830 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 System;
|
|
using System.Collections.Generic;
|
|
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 override IReadOnlyList<Type> RequiredTypes => new[]
|
|
{
|
|
typeof(RoomSettingsOverlay)
|
|
};
|
|
|
|
public TestCaseMatchSettingsOverlay()
|
|
{
|
|
Child = new RoomSettingsOverlay(new Room())
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
State = Visibility.Visible
|
|
};
|
|
}
|
|
}
|
|
}
|