1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Multiplayer/MultiplayerResultsScreen.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
588 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.
2022-06-17 15:37:17 +08:00
#nullable disable
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.OnlinePlay.Playlists;
2020-12-20 23:13:05 +08:00
namespace osu.Game.Screens.OnlinePlay.Multiplayer
2020-12-20 23:13:05 +08:00
{
2020-12-25 12:38:11 +08:00
public partial class MultiplayerResultsScreen : PlaylistsResultsScreen
2020-12-20 23:13:05 +08:00
{
public MultiplayerResultsScreen(ScoreInfo score, long roomId, PlaylistItem playlistItem)
: base(score, roomId, playlistItem, false, false)
2020-12-20 23:13:05 +08:00
{
}
}
}