KcpChannel.cs 231 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 = 1,
  8. Unreliable = 2
  9. }
  10. }