SquareDash/Library/PackageCache/com.unity.services.mediation@1.0.5/Runtime/Plugins/iOS/UMSPDataPrivacy.mm
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

18 lines
402 B
Plaintext

#import <UnityMediationSdk/UnityMediationSdk.h>
#ifdef __cplusplus
extern "C" {
#endif
void UMSPDataPrivacyUserGaveConsent(UMSConsentStatus consent, UMSDataPrivacyLaw law) {
[UMSDataPrivacy userGaveConsent:consent toLaw:law];
}
UMSConsentStatus UMSPDataPrivacyGetConsentStatusForLaw(UMSDataPrivacyLaw law) {
return [UMSDataPrivacy getConsentStatusForLaw:law];
}
#ifdef __cplusplus
}
#endif