LRT14  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
GameState.h
1 #ifndef RHESUS_GAMESTATE_H_
2 #define RHESUS_GAMESTATE_H_
3 
4 namespace Rhesus
5 {
6 namespace Toolkit
7 {
8  namespace GameState
9  {
10  enum Enum
11  {
12  DISABLED = 0x00,
13  AUTONOMOUS = 0x01,
14  TELEOPERATED = 0x02,
15  };
16  }
17 }
18 }
19 
20 #endif