internal void Subscribe(ANetChannel channel, Action <Packet> notificationAction, ushort netCommand) { channel.Subscribe(notificationAction, netCommand); }
internal void Subscribe <TRequest>(ANetChannel channel, TRequest data, Action <Packet> notificationAction, ushort netCommand) { channel.Subscribe(data, notificationAction, netCommand); }