Explorar el Código

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

* fix:修复AddComponentSystem返回System类型错误的问题
zzj hace 3 años
padre
commit
e0212cc804
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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()
 		public Type SystemType()
 		{
 		{
-			return typeof(IGetComponentSystem);
+			return typeof(IAddComponentSystem);
 		}
 		}
 
 
 		public Type Type()
 		public Type Type()