Ejemplo n.º 1
0
 public void HandlePacket(ChannelData packet)
 {
     // If we have a subsystem, let it deal with the data, otherwise ignore.
     if (subsystem != null)
     {
         subsystem.HandleData(packet.Data);
     }
 }