| 982 | |
| 983 | float InputSubsystem::GetKey(int packedKey, bool checkFocus) const |
| 984 | { |
| 985 | const int value = InputBindingValue(packedKey); |
| 986 | return InputBindingIsDoubleTap(packedKey) ? QueryDoubleTapKey(GInput, value, checkFocus) |
| 987 | : QueryKey(GInput, value, checkFocus); |
| 988 | } |
| 989 | |
| 990 | bool InputSubsystem::GetKeyToDo(int packedKey, bool reset, bool checkFocus) |
| 991 | { |
| 992 | const int value = InputBindingValue(packedKey); |
nothing calls this directly
no test coverage detected