com.github.mathiewz.slick.command.ControllerButtonControl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of modernized-slick Show documentation
Show all versions of modernized-slick Show documentation
The main purpose of this libraryis to modernize and maintain the slick2D library.
The newest version!
package com.github.mathiewz.slick.command;
/**
* A control indicating that a gamepad/joystick button must be pressed
* or released to invoke an command.
*
* @author kevin
*/
public class ControllerButtonControl extends ControllerControl {
/**
* Create a new control based on a controller input
*
* @param controllerIndex
* The index of the controller to listen to
* @param button
* The index of the button that causes the command
*/
public ControllerButtonControl(int controllerIndex, int button) {
super(controllerIndex, BUTTON_EVENT, button);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy