-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ppy#7839 from smoogipoo/match-subscreen-redesign
Redesign match subscreen to add playlist support
- Loading branch information
Showing
31 changed files
with
982 additions
and
1,076 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 0 additions & 41 deletions
41
osu.Game.Tests/Visual/Multiplayer/TestSceneMatchBeatmapPanel.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 0 additions & 35 deletions
35
osu.Game.Tests/Visual/Multiplayer/TestSceneMatchHostInfo.cs
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
39 changes: 39 additions & 0 deletions
39
osu.Game.Tests/Visual/Multiplayer/TestSceneMatchLeaderboardChatDisplay.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// 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 System; | ||
using System.Collections.Generic; | ||
using osu.Framework.Graphics; | ||
using osu.Framework.Graphics.Containers; | ||
using osu.Game.Screens.Multi.Match.Components; | ||
using osuTK; | ||
|
||
namespace osu.Game.Tests.Visual.Multiplayer | ||
{ | ||
public class TestSceneMatchLeaderboardChatDisplay : MultiplayerTestScene | ||
{ | ||
public override IReadOnlyList<Type> RequiredTypes => new[] | ||
{ | ||
typeof(LeaderboardChatDisplay) | ||
}; | ||
|
||
protected override bool UseOnlineAPI => true; | ||
|
||
public TestSceneMatchLeaderboardChatDisplay() | ||
{ | ||
Room.RoomID.Value = 7; | ||
|
||
Add(new Container | ||
{ | ||
Anchor = Anchor.Centre, | ||
Origin = Anchor.Centre, | ||
Size = new Vector2(500), | ||
Child = new LeaderboardChatDisplay | ||
{ | ||
Anchor = Anchor.Centre, | ||
Origin = Anchor.Centre, | ||
} | ||
}); | ||
} | ||
} | ||
} |
52 changes: 0 additions & 52 deletions
52
osu.Game.Tests/Visual/Multiplayer/TestSceneMatchParticipants.cs
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.