2020-09-03 14:46:56 +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
|
|
|
|
|
2021-04-21 13:37:11 +08:00
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
2020-09-03 14:46:56 +08:00
|
|
|
namespace osu.Game.Overlays
|
|
|
|
{
|
|
|
|
public interface INamedOverlayComponent
|
|
|
|
{
|
|
|
|
string IconTexture { get; }
|
|
|
|
|
2021-04-21 13:37:11 +08:00
|
|
|
LocalisableString Title { get; }
|
2020-09-03 14:46:56 +08:00
|
|
|
|
2021-04-21 13:37:11 +08:00
|
|
|
LocalisableString Description { get; }
|
2020-09-03 14:46:56 +08:00
|
|
|
}
|
|
|
|
}
|