minesweeper_game/Library/PackageCache/com.unity.services.analytics@f7e249983920/Runtime/Platform/DebugDevice.cs
2025-03-15 14:30:26 -04: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
}
}
}