Advertisement
Guest User

ControlEvent.java

a guest
Jul 17th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. package game;
  2.  
  3. import org.newdawn.slick.command.Control;
  4.  
  5. /**
  6.  * This interface is implemented by a class that wants to receive input as a {@link Control}.
  7.  *
  8.  * @author snapy666
  9.  */
  10. public interface ControlEvent
  11. {
  12.     /**
  13.      * @param control The control that has been received by the {@link ControlListener}.
  14.      */
  15.     public void gotControl(Control control);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement