Path: blob/master/osu.Game.Tests/Visual/Matchmaking/TestSceneMatchmakingPoolSelector.cs
4378 views
// Copyright (c) ppy Pty Ltd <[email protected]>. 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.Matchmaking; using osu.Game.Screens.OnlinePlay.Matchmaking.Queue; using osu.Game.Tests.Visual.Multiplayer; namespace osu.Game.Tests.Visual.Matchmaking { public partial class TestSceneMatchmakingPoolSelector : MultiplayerTestScene { public override void SetUpSteps() { base.SetUpSteps(); AddStep("add selector", () => Child = new PoolSelector { Anchor = Anchor.Centre, Origin = Anchor.Centre, AvailablePools = { Value = [ new MatchmakingPool { Id = 0, RulesetId = 0, Name = "Free-for-all" }, new MatchmakingPool { Id = 1, RulesetId = 1, Name = "1v1" }, new MatchmakingPool { Id = 2, RulesetId = 2, Name = "1v1" }, new MatchmakingPool { Id = 3, RulesetId = 3, Variant = 4, Name = "1v1" }, new MatchmakingPool { Id = 4, RulesetId = 3, Variant = 7, Name = "1v1" }, ] } }); } } }