diff --git a/osu.Game/Skinning/SkinnableElementTargetContainer.cs b/osu.Game/Skinning/SkinnableElementTargetContainer.cs
index b900fdf3e0..f447800a33 100644
--- a/osu.Game/Skinning/SkinnableElementTargetContainer.cs
+++ b/osu.Game/Skinning/SkinnableElementTargetContainer.cs
@@ -26,6 +26,9 @@ namespace osu.Game.Skinning
Target = target;
}
+ ///
+ /// Reload all components in this container from the current skin.
+ ///
public void Reload()
{
ClearInternal();
@@ -43,6 +46,12 @@ namespace osu.Game.Skinning
}
}
+ ///
+ /// Add a new skinnable component to this target.
+ ///
+ /// The component to add.
+ /// Thrown when attempting to add an element to a target which is not supported by the current skin.
+ /// Thrown if the provided instance is not a .
public void Add(ISkinnableComponent component)
{
if (content == null)