2020-12-20 15:13:05 +00: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.
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-25 04:38:11 +00:00
|
|
|
using osu.Game.Online.Rooms;
|
2020-12-20 15:13:05 +00:00
|
|
|
using osu.Game.Scoring;
|
2020-12-25 15:50:00 +00:00
|
|
|
using osu.Game.Screens.OnlinePlay.Playlists;
|
2020-12-20 15:13:05 +00:00
|
|
|
|
2020-12-25 15:50:00 +00:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
2020-12-20 15:13:05 +00:00
|
|
|
{
|
2020-12-25 04:38:11 +00:00
|
|
|
public partial class MultiplayerResultsScreen : PlaylistsResultsScreen
|
2020-12-20 15:13:05 +00:00
|
|
|
{
|
2021-02-16 10:29:40 +00:00
|
|
|
public MultiplayerResultsScreen(ScoreInfo score, long roomId, PlaylistItem playlistItem)
|
2020-12-20 15:14:54 +00:00
|
|
|
: base(score, roomId, playlistItem, false, false)
|
2020-12-20 15:13:05 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|