/TGame/TCommon/Move/MoveDefinition.h

http://awoe.googlecode.com/ · C Header · 22 lines · 19 code · 3 blank · 0 comment · 0 complexity · 667bb69ad71befaf3524bfc9dc225892 MD5 · raw file

  1. #ifndef __MOVE_DEFINITION___
  2. #define __MOVE_DEFINITION___
  3. namespace Move
  4. {
  5. enum MoveState
  6. {
  7. mst_Idle,
  8. mst_Charging,
  9. mst_Moving,
  10. mst_Freeze,
  11. mst_OutOfControl,
  12. };
  13. enum MoveType
  14. {
  15. MT_WALK,
  16. MT_RUN,
  17. };
  18. }
  19. #endif