internal GoogleConfigurationWebRequests(GoogleConfigurationData remoteData, Action <string> onGetGooglePlayKey, Action <GooglePlayRevenueTrackingKeyState> onSetGooglePlayKey) { m_PurchasingRemoteDataRef = remoteData; m_GetGooglePlayKeyCallback = onGetGooglePlayKey; m_SetGooglePlayKeyCallback = onSetGooglePlayKey; }
internal GooglePlayConfigurationSettingsBlock() { m_GooglePlayDataRef = GoogleConfigService.Instance().GoogleConfigData; m_WebRequests = new GoogleConfigurationWebRequests(m_GooglePlayDataRef, this.OnGetGooglePlayKey, this.OnUpdateGooglePlayKey); m_ObfuscatorSection = new GoogleObfuscatorSection(m_GooglePlayDataRef); }
internal GooglePlayConfigurationSettingsBlock(GoogleConfigurationData remoteData) { m_GooglePlayDataRef = remoteData; m_WebRequests = new GoogleConfigurationWebRequests(remoteData, this.OnGetGooglePlayKey, this.OnUpdateGooglePlayKey); m_ObfuscatorSection = new GoogleObfuscatorSection(m_GooglePlayDataRef); }
internal GoogleObfuscatorSection(GoogleConfigurationData googleData) : base() { m_GoogleConfigDataRef = googleData; }