| 77 | bool MappedInputManager::wasPressed(const Button button) const { return mapButton(button, &HalGPIO::wasPressed); } |
| 78 | |
| 79 | bool MappedInputManager::wasReleased(const Button button) const { return mapButton(button, &HalGPIO::wasReleased); } |
| 80 | |
| 81 | bool MappedInputManager::isPressed(const Button button) const { return mapButton(button, &HalGPIO::isPressed); } |
| 82 |