Files
Fishing2NetTest/Assets/Scripts/NBC/Asset/Runtime/Tasks/Download/DownloadCertificateHandler.cs
2026-03-05 18:07:55 +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;
}
}
}