PlatformHelper.IsOSX C# (CSharp) Method

IsOSX() public static method

public static IsOSX ( this platform ) : bool
platform this
return bool
    public static bool IsOSX(this RuntimePlatform platform)
    {
        return platform == RuntimePlatform.OSXDashboardPlayer ||
               platform == RuntimePlatform.OSXEditor ||
               platform == RuntimePlatform.OSXPlayer ||
               platform == RuntimePlatform.OSXWebPlayer;
    }
PlatformHelper