/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
- #ifndef __MOVE_DEFINITION___
- #define __MOVE_DEFINITION___
-
- namespace Move
- {
- enum MoveState
- {
- mst_Idle,
- mst_Charging,
- mst_Moving,
- mst_Freeze,
- mst_OutOfControl,
- };
-
- enum MoveType
- {
- MT_WALK,
- MT_RUN,
- };
- }
- #endif