17 lines
303 B
C
17 lines
303 B
C
|
|
//
|
||
|
|
// MAAdapterDelegateProtocol.h
|
||
|
|
// AppLovinSDK
|
||
|
|
//
|
||
|
|
// Created by Christopher Cong on 10/29/18.
|
||
|
|
//
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This protocol defines a common adapter protocol intended to be notified about mediated ad events.
|
||
|
|
*/
|
||
|
|
@protocol MAAdapterDelegate<NSObject>
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|