Exemplo n.º 1
0
 // Use this for initialization
 private void Awake()
 {
     if (singleton != null)
     {
         Destroy(this);
     }
     else
     {
         singleton = this;
     }
 }
Exemplo n.º 2
0
 // Both Ad Type Initialization
 private void InitializeAds()
 {
     adMobAds = new AdMobAds();
     unityAds = new UnityAds();
 }