소스 검색

Change plugin version to Version type again

Bepis 7 년 전
부모
커밋
255643830e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      BepInEx/Attributes.cs

+ 2 - 2
BepInEx/Attributes.cs

@@ -20,13 +20,13 @@ namespace BepInEx
         /// <summary>
         /// <summary>
         /// The specfic version of the plugin.
         /// The specfic version of the plugin.
         /// </summary>
         /// </summary>
-        public string Version { get; protected set; }
+        public Version Version { get; protected set; }
 
 
         public BepInPlugin(string GUID, string Name, string Version)
         public BepInPlugin(string GUID, string Name, string Version)
         {
         {
             this.GUID = GUID;
             this.GUID = GUID;
             this.Name = Name;
             this.Name = Name;
-            this.Version = Version;
+            this.Version = new Version(Version);
         }
         }
     }
     }