2021-04-28 09:34:34 +00: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.
|
|
|
|
|
2021-05-13 08:03:17 +00:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
2021-04-30 03:42:32 +00:00
|
|
|
namespace osu.Game.Skinning
|
2021-04-28 09:34:34 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Denotes a drawable which, as a drawable, can be adjusted via skinning specifications.
|
|
|
|
/// </summary>
|
2021-05-13 08:06:00 +00:00
|
|
|
public interface ISkinnableDrawable : IDrawable
|
2021-04-28 09:34:34 +00:00
|
|
|
{
|
2021-05-13 08:03:17 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Whether this component should be editable by an end user.
|
|
|
|
/// </summary>
|
|
|
|
bool IsEditable => true;
|
2021-04-28 09:34:34 +00:00
|
|
|
}
|
|
|
|
}
|