// Adjust
 public void SendAdjustEvent(string eventName)
 {
     if (HCConstants.enableAdjust)
     {
         HCAdjustController.Instance().SendAdjustEvent(eventName);
     }
 }
        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();
            }
        }
 public static HCAdjustController Instance()
 {
     if (instance == null)
     {
         instance = new HCAdjustController();
         instance.Initialize();
     }
     return(instance);
 }