Просмотр исходного кода

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

* fix:修复AddComponentSystem返回System类型错误的问题
zzj 3 лет назад
Родитель
Сommit
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()