mirror of https://github.com/ppy/osu
Apply documentation settings for better readability
Co-authored-by: Dean Herbert <pe@ppy.sh> Co-authored-by: Dan Balasescu <smoogipoo@smgi.me>
This commit is contained in:
parent
debd359d2e
commit
a985e3b8d3
|
@ -24,7 +24,7 @@ public class SkinProvidingContainer : Container, ISkinSource
|
|||
public event Action SourceChanged;
|
||||
|
||||
/// <summary>
|
||||
/// The list of skins provided by this <see cref="SkinProvidingContainer"/>.
|
||||
/// Skins which should be exposed by this container, in order of lookup precedence.
|
||||
/// </summary>
|
||||
protected readonly BindableList<ISkin> SkinSources = new BindableList<ISkin>();
|
||||
|
||||
|
@ -44,7 +44,7 @@ public class SkinProvidingContainer : Container, ISkinSource
|
|||
protected virtual bool AllowColourLookup => true;
|
||||
|
||||
/// <summary>
|
||||
/// Constructs a new <see cref="SkinProvidingContainer"/> with a single skin added to the protected <see cref="SkinSources"/> list.
|
||||
/// Constructs a new <see cref="SkinProvidingContainer"/> initialised with a single skin source.
|
||||
/// </summary>
|
||||
public SkinProvidingContainer(ISkin skin)
|
||||
: this()
|
||||
|
@ -54,7 +54,7 @@ public SkinProvidingContainer(ISkin skin)
|
|||
|
||||
/// <summary>
|
||||
/// Constructs a new <see cref="SkinProvidingContainer"/> with no sources.
|
||||
/// Up to the implementation for adding to the <see cref="SkinSources"/> list.
|
||||
/// Implementations can add or change sources through the <see cref="SkinSources"/> list.
|
||||
/// </summary>
|
||||
protected SkinProvidingContainer()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue