Files
Fishing2/Assets/Scripts/NBC/Asset/Runtime/Tasks/Download/DownloadCertificateHandler.cs
2025-05-10 12:49:47 +08:00

12 lines
255 B
C#

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