コード例 #1
0
 // Use this for initialization
 private void Awake()
 {
     if (singleton != null)
     {
         Destroy(this);
     }
     else
     {
         singleton = this;
     }
 }
コード例 #2
0
 // Both Ad Type Initialization
 private void InitializeAds()
 {
     adMobAds = new AdMobAds();
     unityAds = new UnityAds();
 }