Files
Fishing2/Assets/Scripts/NBC/Asset/Runtime/Tasks/Download/DownloadCertificateHandler.cs

12 lines
255 B
C#

using UnityEngine.Networking;
namespace NBC.Asset
{
public class DownloadCertificateHandler : CertificateHandler
{
protected override bool ValidateCertificate(byte[] certificateData)
{
return true;
}
}
}