diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-25 17:30:13 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-25 17:30:13 -0500 |
commit | dcc0ca9b8396505455b5ca6c8ff36440bef8de7e (patch) | |
tree | 0b3b642ae75250bdebf67ae1659713f0b4015df4 /constants/map_data_constants.asm | |
parent | 0380c2a493ccc85cd3a6ab3430fb6bed87cf49eb (diff) |
Move some more constants out of misc_constants.asm
Diffstat (limited to 'constants/map_data_constants.asm')
-rw-r--r-- | constants/map_data_constants.asm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/constants/map_data_constants.asm b/constants/map_data_constants.asm index 11063bec0..141899578 100644 --- a/constants/map_data_constants.asm +++ b/constants/map_data_constants.asm @@ -183,3 +183,14 @@ INVISIBLE EQU 0 FIXED_FACING EQU 2 SLIDING EQU 3 EMOTE_OBJECT EQU 7 + +; DoPlayerMovement.DoStep arguments (see engine/player_movement.asm) + const_def + const STEP_SLOW ; 0 + const STEP_WALK ; 1 + const STEP_BIKE ; 2 + const STEP_LEDGE ; 3 + const STEP_ICE ; 4 + const STEP_TURN ; 5 + const STEP_BACK_LEDGE ; 6 + const STEP_WALK_IN_PLACE ; 7 |