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