您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
37 行
1.1 KiB
37 行
1.1 KiB
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HuaweiService.ads
|
|
{
|
|
public class RewardAdListener_Data : IHmsBaseClass{
|
|
public string name => "com.huawei.hms.ads.reward.RewardAdListener";
|
|
}
|
|
public class RewardAdListener :HmsClass<RewardAdListener_Data>
|
|
{
|
|
public RewardAdListener (): base() { }
|
|
public void onRewardAdClosed() {
|
|
Call("onRewardAdClosed");
|
|
}
|
|
public void onRewardAdFailedToLoad(int arg0) {
|
|
Call("onRewardAdFailedToLoad", arg0);
|
|
}
|
|
public void onRewardAdLeftApp() {
|
|
Call("onRewardAdLeftApp");
|
|
}
|
|
public void onRewardAdLoaded() {
|
|
Call("onRewardAdLoaded");
|
|
}
|
|
public void onRewardAdOpened() {
|
|
Call("onRewardAdOpened");
|
|
}
|
|
public void onRewarded(Reward arg0) {
|
|
Call("onRewarded", arg0);
|
|
}
|
|
public void onRewardAdCompleted() {
|
|
Call("onRewardAdCompleted");
|
|
}
|
|
public void onRewardAdStarted() {
|
|
Call("onRewardAdStarted");
|
|
}
|
|
}
|
|
}
|