From d64cf38fd2dd3f461b58c8def28710b3ff86de18 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Sat, 29 Jun 2019 13:53:00 -0500 Subject: [PATCH] Exposed PluginMetadata.IsBare --- IPA.Loader/Loader/PluginLoader.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/IPA.Loader/Loader/PluginLoader.cs b/IPA.Loader/Loader/PluginLoader.cs index 9aa89eed..1277fb46 100644 --- a/IPA.Loader/Loader/PluginLoader.cs +++ b/IPA.Loader/Loader/PluginLoader.cs @@ -81,7 +81,11 @@ namespace IPA.Loader internal bool IsSelf; - internal bool IsBare; + /// + /// Whether or not this metadata object represents a bare manifest. + /// + /// if it is bare, otherwise + public bool IsBare { get; internal set; } private PluginManifest manifest;