Rename Multi directory to OnlinePlay

This commit is contained in:
Bartłomiej Dach
2020-12-25 16:48:03 +01:00
parent b448fd1b8b
commit e797e5ce7a
78 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,17 @@
// 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.
using osu.Game.Online.Rooms;
using osu.Game.Scoring;
using osu.Game.Screens.Multi.Playlists;
namespace osu.Game.Screens.Multi.Multiplayer
{
public class MultiplayerResultsScreen : PlaylistsResultsScreen
{
public MultiplayerResultsScreen(ScoreInfo score, int roomId, PlaylistItem playlistItem)
: base(score, roomId, playlistItem, false, false)
{
}
}
}