| 1154 | } |
| 1155 | |
| 1156 | bool IsSideJumpState(int state) |
| 1157 | { |
| 1158 | static const std::vector<int> jumpStates |
| 1159 | { |
| 1160 | LS_JUMP_LEFT, |
| 1161 | LS_JUMP_RIGHT, |
| 1162 | }; |
| 1163 | return TestState(state, jumpStates); |
| 1164 | } |
| 1165 | |
| 1166 | bool IsCrouching(const ItemInfo* item) |
| 1167 | { |
no test coverage detected