1 package org.newdawn.slick; 2 3 /** 4 * A listener that will be notified of keyboard, mouse and controller events. 5 * 6 * @author kevin 7 */ 8 public interface InputListener extends MouseListener, KeyListener, ControllerListener { 9 }