Пример #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);
 }