Add and change xmldocs

This commit is contained in:
Craftplacer 2020-08-29 11:07:28 +02:00
parent 08329aa382
commit 82acb3506c
2 changed files with 4 additions and 1 deletions

View File

@ -42,7 +42,7 @@ public interface IWorkingBeatmap
Storyboard Storyboard { get; }
/// <summary>
/// Retrieves the <see cref="Skin"/> which this <see cref="WorkingBeatmap"/> provides.
/// Retrieves the <see cref="IBeatmapSkin"/> which this <see cref="WorkingBeatmap"/> provides.
/// </summary>
IBeatmapSkin Skin { get; }

View File

@ -3,6 +3,9 @@
namespace osu.Game.Skinning
{
/// <summary>
/// Marker interface for skins that originate from beatmaps.
/// </summary>
public interface IBeatmapSkin : ISkin
{
}