You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
614 B
27 lines
614 B
package sig.modules;
|
|
|
|
import java.awt.Graphics;
|
|
import java.awt.geom.Rectangle2D;
|
|
|
|
import net.java.games.input.Controller;
|
|
import net.java.games.input.ControllerEnvironment;
|
|
import sig.Module;
|
|
|
|
public class ControllerModule extends Module{
|
|
|
|
public ControllerModule(Rectangle2D bounds, String moduleName) {
|
|
super(bounds, moduleName);
|
|
Controller[] ca = ControllerEnvironment.getDefaultEnvironment().getControllers();
|
|
for (Controller c : ca) {
|
|
System.out.println(c.getName());
|
|
}
|
|
}
|
|
|
|
public void run() {
|
|
super.run();
|
|
}
|
|
|
|
public void draw(Graphics g) {
|
|
super.draw(g);
|
|
}
|
|
}
|
|
|