added check for minimal functionality.
This commit is contained in:
parent
cf9c27456d
commit
d1d9b1ad55
@ -33,7 +33,12 @@ namespace RecrownedAthenaeum.UI.Skin
|
||||
/// <summary>
|
||||
/// Whether or not the skin manager is set up with a <see cref="BaseSkin"/> and <see cref="loadedSkin"/>.
|
||||
/// </summary>
|
||||
public bool ReadyForUse { get { return (loadedSkin != null && BaseSkin != null); } }
|
||||
public bool MergingSkins { get { return (loadedSkin != null && SkinUseable); } }
|
||||
|
||||
/// <summary>
|
||||
/// Whether or not this manager has been set up with at least a base skin.
|
||||
/// </summary>
|
||||
public bool SkinUseable { get { return BaseSkin == null; } }
|
||||
|
||||
/// <summary>
|
||||
/// The list of paths for all found skins by <see cref="SearchSkinDirectory"/>. May be null.
|
||||
|
Loading…
Reference in New Issue
Block a user