SquareDash/Library/PackageCache/com.unity.services.analytics@4.3.0/Runtime/Platform/UserCountry.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

16 lines
428 B
C#

using System.Globalization;
namespace Unity.Services.Analytics.Internal.Platform
{
public static class UserCountry
{
public static string Name()
{
// User country cannot be reliably deduced from any setting we have available here
// without using location services, so we return ZZ so the Analytics service will use
// GeoIP.
return "";
}
}
}