BITKit/Packages/Runtime~/Core/kcp2k/highlevel/KcpChannel.cs

10 lines
231 B
C#
Raw Normal View History

2023-06-29 14:57:11 +08:00
namespace 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
}
}