10 lines
231 B
C#
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
|
||
|
}
|
||
|
}
|