This repository has been archived on 2025-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
|
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
|
|
}
|
|
} |