浏览代码

Made BaseUnityPlugin.Config public to make access by other plugins easier

ManlyMarco 4 年之前
父节点
当前提交
d2bab3824e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      BepInEx/Contract/BaseUnityPlugin.cs

+ 1 - 1
BepInEx/Contract/BaseUnityPlugin.cs

@@ -23,7 +23,7 @@ namespace BepInEx
 		/// Default config file tied to this plugin. The config file will not be created until 
 		/// any settings are added and changed, or <see cref="ConfigFile.Save"/> is called.
 		/// </summary>
-		protected ConfigFile Config { get; }
+		public ConfigFile Config { get; }
 
 		/// <summary>
 		/// Create a new instance of a plugin and all of its tied in objects.