mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 01:07:24 +08:00
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
// 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.Game.Online.Multiplayer;
|
|
using osu.Game.Rulesets.Osu;
|
|
using osu.Game.Screens.Multi.Components;
|
|
using osu.Game.Tests.Beatmaps;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
|
{
|
|
public class TestSceneOverlinedPlaylist : MultiplayerTestScene
|
|
{
|
|
protected override bool UseOnlineAPI => true;
|
|
|
|
public TestSceneOverlinedPlaylist()
|
|
{
|
|
for (int i = 0; i < 10; i++)
|
|
{
|
|
Room.Playlist.Add(new PlaylistItem
|
|
{
|
|
ID = i,
|
|
Beatmap = { Value = new TestBeatmap(new OsuRuleset().RulesetInfo).BeatmapInfo },
|
|
Ruleset = { Value = new OsuRuleset().RulesetInfo }
|
|
});
|
|
}
|
|
|
|
Add(new OverlinedPlaylist(false)
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Size = new Vector2(500),
|
|
});
|
|
}
|
|
}
|
|
}
|