This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,32 @@
using System;
namespace ExitGames.Client.Photon
{
// Token: 0x02000034 RID: 52
public class SocketUdpNativeStatic : IPhotonSocket
{
// Token: 0x06000248 RID: 584 RVA: 0x000130BC File Offset: 0x000112BC
public SocketUdpNativeStatic(PeerBase peerBase)
: base(peerBase)
{
}
// Token: 0x06000249 RID: 585 RVA: 0x000130C7 File Offset: 0x000112C7
public override bool Disconnect()
{
throw new NotImplementedException("This class was compiled in an assembly WITH c# sockets. Another dll must be used for native sockets.");
}
// Token: 0x0600024A RID: 586 RVA: 0x000130C7 File Offset: 0x000112C7
public override PhotonSocketError Send(byte[] data, int length)
{
throw new NotImplementedException("This class was compiled in an assembly WITH c# sockets. Another dll must be used for native sockets.");
}
// Token: 0x0600024B RID: 587 RVA: 0x000130C7 File Offset: 0x000112C7
public override PhotonSocketError Receive(out byte[] data)
{
throw new NotImplementedException("This class was compiled in an assembly WITH c# sockets. Another dll must be used for native sockets.");
}
}
}