Exemplo n.º 1
0
 internal void Subscribe(ANetChannel channel, Action <Packet> notificationAction, ushort netCommand)
 {
     channel.Subscribe(notificationAction, netCommand);
 }
Exemplo n.º 2
0
 internal void Subscribe <TRequest>(ANetChannel channel, TRequest data, Action <Packet> notificationAction, ushort netCommand)
 {
     channel.Subscribe(data, notificationAction, netCommand);
 }