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