15 lines
235 B
C#
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
|
|
}
|
|
}
|
|
}
|