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

15 lines
235 B
C#

namespace Unity.Services.Analytics.Platform
{
static class DebugDevice
{
internal static bool IsDebugDevice()
{
#if UNITY_EDITOR
return true;
#else
return false;
#endif
}
}
}