LRT13  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
NetChannel.h
1 #ifndef NET_CHANNEL_H_
2 #define NET_CHANNEL_H_
3 //stupid hack
4 namespace Network
5 {
6  // minor hack because pre-C++11 compilers move the enum values into the parent namespace.
11  namespace NetChannel
12  {
13  // Network subchannels are identified by base_channel + [0, 15] for a total of 16 subchannels. -tp
14  enum Enum
15  {
16 // UNRELIABLE CHANNELS
25 
26 // RELIABLE CHANNELS
30  NET_RELIABLE = 0x32,
39  };
40  };
41 }
42 
43 #endif