WuhuIslandTesting/Library/PackageCache/com.unity.addressables@1.21.12/Runtime/ResourceManager/Util/PlatformUtilities.cs
2025-01-07 02:06:59 +01:00

10 lines
261 B
C#

namespace UnityEngine.ResourceManagement.Util
{
internal class PlatformUtilities
{
internal static bool PlatformUsesMultiThreading(RuntimePlatform platform)
{
return platform != RuntimePlatform.WebGLPlayer;
}
}
}