소스 검색

Generic Type Typo

Usagirei 6 년 전
부모
커밋
2ab00deeb8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      BepInEx/ConfigWrapper.cs

+ 1 - 1
BepInEx/ConfigWrapper.cs

@@ -5,7 +5,7 @@ namespace BepInEx
 {
     public interface IConfigConverter<T>
     {
-        string ConvertToString<T>(T value);
+        string ConvertToString(T value);
         T ConvertFromString(string str);
     }