private void Initialize() { if (HCConstants.enableGameAnalytics) { HCGameAnalytics.Instance(); } if (HCConstants.enableFacebook) { HCFacebookController.Instance(); } if (HCConstants.enableAdmob) { HCAdmobController.Instance(); } if (HCConstants.enableAdjust) { HCAdjustController.Instance(); } if (HCConstants.enableAppsflyer) { HCAppFlyerController.Instance(); } }
// Adjust public void SendAdjustEvent(string eventName) { if (HCConstants.enableAdjust) { HCAdjustController.Instance().SendAdjustEvent(eventName); } }