leopard8352
2023-12-04 8871a733498c8d717714b83bb096b7738224541a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Fill out your copyright notice in the Description page of Project Settings.
 
 
#include "TapADNStatic.h"
 
#include "TapADN.h"
 
void UTapADNStatic::TapADNRequestPermissionIfNecessary()
{
    TapADN::TapADNRequestPermissionIfNecessary();
}
 
void UTapADNStatic::TapADNInit(int32 mediaID, FString mediaName, FString mediaKey, bool enableDebug, int32 avatarLevel)
{
    TapADN::TapADNInit(mediaID,mediaName,mediaKey,enableDebug,avatarLevel);
}
 
void UTapADNStatic::TapADNRequestRewardAD(int32 spaceID, FString rewardName, int32 rewardAmount)
{
    TapADN::TapADNRequestRewardAD(spaceID,rewardName,rewardAmount);
}
 
void UTapADNStatic::TapADNPlayRewardAD()
{
    TapADN::TapADNPlayRewardAD();
}