| 108 | } |
| 109 | |
| 110 | void Input::bindKey(int key, ActionType actionType, bool isContinuous, bool isInverted) |
| 111 | { |
| 112 | actionBindingToKeyMap.emplace(ActionBinding(actionType, isContinuous, isInverted), key); |
| 113 | } |
| 114 | |
| 115 | void Input::bindMouseButton(int mouseButton, ActionType actionType, bool isContinuous, bool isInverted) |
| 116 | { |
nothing calls this directly
no test coverage detected