1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 18:47:25 +08:00
osu-lazer/osu.Game/Screens/Multi/Multiplayer/MultiplayerResultsScreen.cs

18 lines
548 B
C#
Raw Normal View History

2020-12-20 23:13:05 +08: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.
2020-12-25 12:38:11 +08:00
using osu.Game.Online.Rooms;
2020-12-20 23:13:05 +08:00
using osu.Game.Scoring;
using osu.Game.Screens.Multi.Ranking;
2020-12-25 12:38:11 +08:00
namespace osu.Game.Screens.Multi.Multiplayer
2020-12-20 23:13:05 +08:00
{
2020-12-25 12:38:11 +08:00
public class MultiplayerResultsScreen : PlaylistsResultsScreen
2020-12-20 23:13:05 +08:00
{
2020-12-25 12:38:11 +08:00
public MultiplayerResultsScreen(ScoreInfo score, int roomId, PlaylistItem playlistItem)
: base(score, roomId, playlistItem, false, false)
2020-12-20 23:13:05 +08:00
{
}
}
}