1
0
forked from Clones/Controlify

1.1 changelog, bump version, update comparison

This commit is contained in:
isXander
2023-04-14 11:55:30 +01:00
parent 95e1ce2385
commit 20e662f927
16 changed files with 511 additions and 126 deletions

View File

@ -0,0 +1,23 @@
package dev.isxander.controlify.driver;
public interface RumbleDriver extends Driver {
boolean rumble(float strongMagnitude, float weakMagnitude);
boolean isRumbleSupported();
RumbleDriver UNSUPPORTED = new RumbleDriver() {
@Override
public void update() {
}
@Override
public boolean rumble(float strongMagnitude, float weakMagnitude) {
return false;
}
@Override
public boolean isRumbleSupported() {
return false;
}
};
}