13 lines
247 B
C#
13 lines
247 B
C#
using UnityEngine.Networking;
|
|
|
|
namespace Game.Network
|
|
{
|
|
public class BypassCertificate : CertificateHandler
|
|
{
|
|
protected override bool ValidateCertificate(byte[] certificateData)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|