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