internal void Send(ANetChannel channel, object data, ushort netCommand, int rpcId, Type type) { channel.Send(data, netCommand, rpcId, type); }
internal void Send(ANetChannel channel, ushort netCommand, int rpcId) { channel.Send(netCommand, rpcId); }
internal void Send <TSender>(ANetChannel channel, TSender data, ushort netCommand, int rpcId) { channel.Send(data, netCommand, rpcId); }