Moved to main directory instead of src folder

This commit is contained in:
jancoow
2015-05-24 18:03:16 +02:00
parent 1225a82a07
commit 2338366080
14 changed files with 0 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package control.joystick;
public class JoystickEvent {
private Joystick joystick;
private Long now;
public JoystickEvent(Joystick joystick, Long now){
this.joystick = joystick;
this.now = now;
}
public Joystick getJoystick() {
return joystick;
}
public Long getNow() {
return now;
}
}