Version 2.0 of sigIRC rewritten and remastered for Java. Includes "Modules" which can be enabled/disabled to modify functionality of the program.
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.
sigIRCv2/src/sig/modules/ControllerModule.java

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);
}
}