JoystickEvent.java 307 B

12345678910111213141516171819
  1. package control.joystick;
  2. public class JoystickEvent {
  3. private Joystick joystick;
  4. private Long now;
  5. public JoystickEvent(Joystick joystick, Long now){
  6. this.joystick = joystick;
  7. this.now = now;
  8. }
  9. public Joystick getJoystick() {
  10. return joystick;
  11. }
  12. public Long getNow() {
  13. return now;
  14. }
  15. }