You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- // Copyright 2014 Google Inc. All Rights Reserved.
-
- #import <Foundation/Foundation.h>
-
- /// A cache to hold onto objects while Unity is still referencing them.
- @interface GADUObjectCache : NSObject
-
- + (instancetype)sharedInstance;
-
- /// References to objects Google Mobile ads objects created from Unity.
- @property(nonatomic, strong) NSMutableDictionary *references;
-
- @end
-
- @interface NSObject (GADUOwnershipAdditions)
-
- /// Returns a key used to lookup a Google Mobile Ads object. This method is intended to only be used
- /// by Google Mobile Ads objects.
- - (NSString *)gadu_referenceKey;
-
- @end
|