This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| UIView *gView; | |
| UIViewController *gViewColtroller; | |
| @interface adInterstitial : NSObject | |
| /// The interstitial ad. | |
| @property(nonatomic, strong) GADInterstitial *interstitial; | |
| @property (strong, nonatomic) GADRequest *request; | |
| @end | |
| @implementation adInterstitial |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from __future__ import annotations | |
| from typing import Optional | |
| from kivy import platform | |
| class SingletonMeta(type): | |
| _instance: Optional[Singleton] = None | |
| def __call__(self) -> Singleton: |