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