2020-02-14 19:42:14 +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.
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-02-19 16:33:09 +08:00
|
|
|
using osu.Game.Screens.Multi.Components;
|
2020-02-14 19:42:14 +08:00
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
|
|
|
{
|
|
|
|
public class TestSceneOverlinedParticipants : MultiplayerTestScene
|
|
|
|
{
|
|
|
|
protected override bool UseOnlineAPI => true;
|
|
|
|
|
|
|
|
public TestSceneOverlinedParticipants()
|
|
|
|
{
|
|
|
|
Room.RoomID.Value = 7;
|
|
|
|
|
|
|
|
Add(new Container
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Size = new Vector2(500),
|
|
|
|
Child = new OverlinedParticipants()
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|