* Set gamepad vibration for both motors (duration in seconds) */
| 94 | * Set gamepad vibration for both motors (duration in seconds) |
| 95 | */ |
| 96 | void SetVibration(float leftMotor, float rightMotor, float duration) const { |
| 97 | ::SetGamepadVibration(number, leftMotor, rightMotor, duration); |
| 98 | } |
| 99 | protected: |
| 100 | void set(int gamepadNumber) { number = gamepadNumber; } |
| 101 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected