Преглед изворни кода

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

* fix:修复AddComponentSystem返回System类型错误的问题
zzj пре 3 година
родитељ
комит
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()
 		public Type SystemType()
 		{
 		{
-			return typeof(IGetComponentSystem);
+			return typeof(IAddComponentSystem);
 		}
 		}
 
 
 		public Type Type()
 		public Type Type()