namespace IGP.UnitySDK.ThirdParty.Kcp2k
{
    // channel type and header for raw messages
    public enum KcpChannel : byte
    {
        // don't react on 0x00. might help to filter out random noise.
        Reliable   = 1,
        Unreliable = 2
    }
}
