فهرست منبع

修复AddComponentSystem返回System类型错误的问题 (#323)

* fix:修复AddComponentSystem返回System类型错误的问题
zzj 4 سال پیش
والد
کامیت
e0212cc804
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      Unity/Codes/Model/Core/Object/IAddComponentSystem.cs

+ 1 - 1
Unity/Codes/Model/Core/Object/IAddComponentSystem.cs

@@ -21,7 +21,7 @@ namespace ET
 		
 		public Type SystemType()
 		{
-			return typeof(IGetComponentSystem);
+			return typeof(IAddComponentSystem);
 		}
 
 		public Type Type()