Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324
  1. namespace UnityEditor.Purchasing
  2. {
  3. internal class GoogleConfigService
  4. {
  5. static GoogleConfigService m_Instance;
  6. internal GoogleConfigurationData GoogleConfigData { get; }
  7. GoogleConfigService()
  8. {
  9. GoogleConfigData = new GoogleConfigurationData();
  10. }
  11. internal static GoogleConfigService Instance()
  12. {
  13. if (m_Instance == null)
  14. {
  15. m_Instance = new GoogleConfigService();
  16. }
  17. return m_Instance;
  18. }
  19. }
  20. }