123456789101112131415161718192021222324 |
- namespace UnityEditor.Purchasing
- {
- internal class GoogleConfigService
- {
- static GoogleConfigService m_Instance;
-
- internal GoogleConfigurationData GoogleConfigData { get; }
-
- GoogleConfigService()
- {
- GoogleConfigData = new GoogleConfigurationData();
- }
-
- internal static GoogleConfigService Instance()
- {
- if (m_Instance == null)
- {
- m_Instance = new GoogleConfigService();
- }
-
- return m_Instance;
- }
- }
- }
|