您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
593 B
22 行
593 B
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HuaweiService
|
|
{
|
|
public class ContinuationData : IHmsBaseListener
|
|
{
|
|
public string name => "com.huawei.hmf.tasks.Continuation";
|
|
public string buildName => "";
|
|
}
|
|
public class Continuation : HmsListener<ContinuationData>
|
|
{
|
|
|
|
public virtual AndroidJavaObject then(Task arg0) {
|
|
return Call<AndroidJavaObject>("then", arg0);
|
|
}
|
|
|
|
public AndroidJavaObject then(AndroidJavaObject arg0){
|
|
return then(HmsUtil.GetHmsBase<Task>(arg0));
|
|
}
|
|
}
|
|
}
|