// // AdNative.h // XenonSDK // // Created by fq on 2020/12/24. // Copyright © 2020 SAGESSE. All rights reserved. // #import "AdBase.h" /** 原生广告 */ @interface AdNative : AdBase ///打开原生广告 -(void)showNativeWithID:(NSString *)adId X:(int)x Y:(int)y W:(int)w H:(int)h; ///关闭 -(void)close; //Refreshes the ad. -(void)refreshAd; @end