예제 #1
0
 internal static void Send(PacketWriter stream, NetPriority pp, NetReliability pr, char orderingChannel = '\0')
 {
     clientInterface.Send(stream.GetData(), stream.GetLength(), (PacketPriority)pp, (PacketReliability)pr, orderingChannel, clientInterface.GetSystemAddressFromIndex(0), false);
     sentBytes += stream.GetLength();
 }
예제 #2
0
 internal void Send(PacketWriter stream, NetPriority pp, NetReliability pr, char orderingChannel)
 {
     this.Send(stream.GetData(), stream.GetLength(), pp, pr, orderingChannel);
 }