1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 00:02:54 +08:00
osu-lazer/osu.Game/Skinning/ISkinnableTarget.cs

26 lines
697 B
C#
Raw Normal View History

// 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
{
2021-05-10 21:43:48 +08:00
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);
}
}