This commit is contained in:
CortexCore
2024-08-02 14:34:53 +08:00
parent d48a4abe1a
commit a256dc33ed
4 changed files with 8 additions and 1 deletions

View File

@@ -59,6 +59,7 @@ namespace BITKit
public static async UniTask UniTaskFunc<T0,T1,T2>(this Func<T0,T1,T2,UniTask> self,T0 arg0,T1 arg1,T2 arg2)
{
if(self is null)return;
List<UniTask> tasks = new List<UniTask>();
foreach (var func in self.CastAsFunc())
{