1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 18:23:04 +08:00

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 @@ namespace osu.Game.Beatmaps
Storyboard Storyboard { get; } Storyboard Storyboard { get; }
/// <summary> /// <summary>
/// Retrieves the <see cref="Skin"/> which this <see cref="WorkingBeatmap"/> provides. /// Retrieves the <see cref="IBeatmapSkin"/> which this <see cref="WorkingBeatmap"/> provides.
/// </summary> /// </summary>
IBeatmapSkin Skin { get; } IBeatmapSkin Skin { get; }

View File

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