mirror of
https://github.com/ppy/osu.git
synced 2024-12-16 03:42:58 +08:00
26 lines
697 B
C#
26 lines
697 B
C#
// 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.
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Skinning
|
|
{
|
|
/// <summary>
|
|
/// Denotes a container which can house <see cref="ISkinnableComponent"/>s.
|
|
/// </summary>
|
|
public interface ISkinnableTarget
|
|
{
|
|
public SkinnableTarget Target { get; }
|
|
|
|
/// <summary>
|
|
/// Reload this target from the current skin.
|
|
/// </summary>
|
|
public void Reload();
|
|
|
|
/// <summary>
|
|
/// Add the provided item to this target.
|
|
/// </summary>
|
|
public void Add(Drawable drawable);
|
|
}
|
|
}
|