FlappyBirdMP/Assets/Mirror/Transports/KCP/kcp2k/highlevel/KcpChannel.cs
2025-06-23 00:38:12 +05:30

10 lines
231 B
C#

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
}
}