SquareDash/Library/PackageCache/com.unity.purchasing@4.10.0/Editor/ServiceProjectSettings/Service/GoogleConfigService.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01: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;
}
}
}