KcpChannel.cs 244 B

12345678910
  1. namespace kcp2k
  2. {
  3. // channel type and header for raw messages
  4. public enum KcpChannel : byte
  5. {
  6. // don't react on 0x00. might help to filter out random noise.
  7. Reliable = 0x01,
  8. Unreliable = 0x02
  9. }
  10. }