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