minesweeper_game/Library/PackageCache/com.unity.purchasing@649c6c7b3b1b/Editor/ServiceProjectSettings/Service/GoogleConfigService.cs
2025-03-15 14:30:26 -04:00

25 lines
544 B
C#

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;
}
}
}