Rename I{Multiplayer -> OnlinePlay}SubScreen

This commit is contained in:
Bartłomiej Dach
2020-12-25 17:05:29 +01:00
parent e5064ee930
commit 4c43a67b68
7 changed files with 13 additions and 13 deletions

View File

@ -0,0 +1,12 @@
// 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.
namespace osu.Game.Screens.OnlinePlay
{
public interface IOnlinePlaySubScreen : IOsuScreen
{
string Title { get; }
string ShortTitle { get; }
}
}