Move private downwards

This commit is contained in:
Dean Herbert 2021-07-06 17:07:25 +09:00
parent 1232925f93
commit 032c285ede

View File

@ -23,11 +23,6 @@ namespace osu.Game.Skinning
{
public event Action SourceChanged;
/// <summary>
/// A dictionary mapping each <see cref="ISkin"/> source to a wrapper which handles lookup allowances.
/// </summary>
private readonly Dictionary<ISkin, DisableableSkinSource> skinSources = new Dictionary<ISkin, DisableableSkinSource>();
[CanBeNull]
protected ISkinSource ParentSource { get; private set; }
@ -46,6 +41,11 @@ namespace osu.Game.Skinning
protected virtual bool AllowColourLookup => true;
/// <summary>
/// A dictionary mapping each <see cref="ISkin"/> source to a wrapper which handles lookup allowances.
/// </summary>
private readonly Dictionary<ISkin, DisableableSkinSource> skinSources = new Dictionary<ISkin, DisableableSkinSource>();
/// <summary>
/// Constructs a new <see cref="SkinProvidingContainer"/> initialised with a single skin source.
/// </summary>