diff options
author | n0n4m3 <none@none> | 2009-12-19 19:11:31 +0100 |
---|---|---|
committer | n0n4m3 <none@none> | 2009-12-19 19:11:31 +0100 |
commit | f97f6e5201bda7f37fa4e11fd74ae3d3e469a62c (patch) | |
tree | 9689a75f3975f951c3cc7627e4dae446acaef2cf /src/game/Unit.h | |
parent | 12dd4b709ce318b7a0dd1b10200daf0c606f008c (diff) |
Add a missing stand_state definition. by NoFantasy
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.h')
-rw-r--r-- | src/game/Unit.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/game/Unit.h b/src/game/Unit.h index f1e0aeecd86..cef043be902 100644 --- a/src/game/Unit.h +++ b/src/game/Unit.h @@ -165,13 +165,18 @@ enum UnitStandStateType UNIT_STAND_STATE_SIT_MEDIUM_CHAIR = 5, UNIT_STAND_STATE_SIT_HIGH_CHAIR = 6, UNIT_STAND_STATE_DEAD = 7, - UNIT_STAND_STATE_KNEEL = 8 + UNIT_STAND_STATE_KNEEL = 8, + UNIT_STAND_STATE_SUBMERGED = 9 }; // byte flag value (UNIT_FIELD_BYTES_1,2) enum UnitStandFlags { + UNIT_STAND_FLAGS_UNK1 = 0x01, UNIT_STAND_FLAGS_CREEP = 0x02, + UNIT_STAND_FLAGS_UNK3 = 0x04, + UNIT_STAND_FLAGS_UNK4 = 0x08, + UNIT_STAND_FLAGS_UNK5 = 0x10, UNIT_STAND_FLAGS_ALL = 0xFF }; @@ -179,6 +184,7 @@ enum UnitStandFlags enum UnitBytes1_Flags { UNIT_BYTE1_FLAG_ALWAYS_STAND = 0x01, + UNIT_BYTE1_FLAG_UNK_2 = 0x02, UNIT_BYTE1_FLAG_UNTRACKABLE = 0x04, UNIT_BYTE1_FLAG_ALL = 0xFF }; |