2019-01-24 16:43:03 +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.
|
2018-12-04 16:43:44 +08:00
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-25 23:50:00 +08:00
|
|
|
namespace osu.Game.Screens.OnlinePlay
|
2018-12-04 16:43:44 +08:00
|
|
|
{
|
2020-12-26 00:05:29 +08:00
|
|
|
public interface IOnlinePlaySubScreen : IOsuScreen
|
2018-12-04 16:43:44 +08:00
|
|
|
{
|
2019-01-25 16:44:33 +08:00
|
|
|
string Title { get; }
|
|
|
|
|
2018-12-04 16:43:44 +08:00
|
|
|
string ShortTitle { get; }
|
|
|
|
}
|
|
|
|
}
|