2020-02-14 19:27:37 +08: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.
|
|
|
|
|
2020-07-09 17:55:10 +08:00
|
|
|
using NUnit.Framework;
|
2020-02-14 19:27:37 +08:00
|
|
|
using osu.Framework.Graphics;
|
2020-07-09 17:55:10 +08:00
|
|
|
using osu.Game.Online.Multiplayer;
|
2020-02-14 19:27:37 +08:00
|
|
|
using osu.Game.Screens.Multi.Components;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
|
|
|
{
|
|
|
|
public class TestSceneParticipantsList : MultiplayerTestScene
|
|
|
|
{
|
|
|
|
protected override bool UseOnlineAPI => true;
|
|
|
|
|
2020-07-09 17:55:10 +08:00
|
|
|
[SetUp]
|
|
|
|
public void Setup() => Schedule(() =>
|
2020-02-14 19:27:37 +08:00
|
|
|
{
|
2020-07-09 17:55:10 +08:00
|
|
|
Room = new Room { RoomID = { Value = 7 } };
|
|
|
|
});
|
2020-02-14 19:27:37 +08:00
|
|
|
|
2020-07-09 17:55:10 +08:00
|
|
|
public TestSceneParticipantsList()
|
|
|
|
{
|
2020-02-14 19:27:37 +08:00
|
|
|
Add(new ParticipantsList { RelativeSizeAxes = Axes.Both });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|