HDwallpaper/HD wallpaper/FW/AppLovinSDK.xcframework/ios-arm64/AppLovinSDK.framework/Headers/MAAdRevenueDelegate.h
2024-07-03 17:31:03 +08:00

29 lines
526 B
Objective-C

//
// MAAdRevenueDelegate.h
// AppLovinSDK
//
// Created by Andrew Tian on 6/3/21.
//
@class MAAd;
NS_ASSUME_NONNULL_BEGIN
/**
* This protocol defines a delegate to be notified about ad revenue events.
*/
@protocol MAAdRevenueDelegate <NSObject>
/**
* The SDK invokes this callback when it detects a revenue event for an ad.
*
* The SDK invokes this callback on the UI thread.
*
* @param ad The ad for which the revenue event was detected.
*/
- (void)didPayRevenueForAd:(MAAd *)ad;
@end
NS_ASSUME_NONNULL_END