using System; namespace MLAPI.Transports { /// /// A transport channel used by the MLAPI /// [Serializable] public struct TransportChannel { public TransportChannel(NetworkChannel channel, NetworkDelivery delivery) { Channel = channel; Delivery = delivery; } /// /// Channel identifier /// public NetworkChannel Channel; /// /// Delivery type /// public NetworkDelivery Delivery; } }