示例#1
0
 internal void Send(ANetChannel channel, object data, ushort netCommand, int rpcId, Type type)
 {
     channel.Send(data, netCommand, rpcId, type);
 }
示例#2
0
 internal void Send(ANetChannel channel, ushort netCommand, int rpcId)
 {
     channel.Send(netCommand, rpcId);
 }
示例#3
0
 internal void Send <TSender>(ANetChannel channel, TSender data, ushort netCommand, int rpcId)
 {
     channel.Send(data, netCommand, rpcId);
 }