LRT14  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
NetChannel.h
1 #ifndef RHESUS_NET_CHANNEL_H_
2 #define RHESUS_NET_CHANNEL_H_
3 
4 namespace Rhesus
5 {
6 namespace Messenger
7 {
12  namespace NetChannel
13  {
14  // Network subchannels are identified by base_channel + [0, 15] for a total of 16 subchannels. -tp
15  enum Enum
16  {
17 // UNRELIABLE CHANNELS
26 
27 // RELIABLE CHANNELS
31  NET_RELIABLE = 0x32,
40  };
41  };
42 }
43 }
44 
45 #endif