Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 

22 рядки
592 B

  1. // Copyright 2014 Google Inc. All Rights Reserved.
  2. #import <Foundation/Foundation.h>
  3. /// A cache to hold onto objects while Unity is still referencing them.
  4. @interface GADUObjectCache : NSObject
  5. + (instancetype)sharedInstance;
  6. /// References to objects Google Mobile ads objects created from Unity.
  7. @property(nonatomic, strong) NSMutableDictionary *references;
  8. @end
  9. @interface NSObject (GADUOwnershipAdditions)
  10. /// Returns a key used to lookup a Google Mobile Ads object. This method is intended to only be used
  11. /// by Google Mobile Ads objects.
  12. - (NSString *)gadu_referenceKey;
  13. @end